HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RImmers2/portal.photomenu.nl/wwwroot/views/sharesHistory/restaurant.html
<div class="row">
    <div class="col-lg-12">
        <h1 class="page-header">Shares of "@{model.restaurant.Name}"</h1>
        <form method="post">
          <h3>Credit Management</h3>
          <div class="form-group col-md-6">
            @{if repository.type == 'admin'}
              <label>Available credits</label>
              <div class="input-group">
                <input type="text" class="col-md-8 form-control" value="@{model.restaurant.Credits}" name="Credits" />                
				<span class="input-group-btn">
                  <button class="btn btn-primary" type="submit"><i class="fa fa-floppy-o" aria-hidden="true"></i> Save</button>
                </span>
              </div>
            @{else}
              <label>Available credits: <span style="font-size: 18px;">&nbsp; @{model.restaurant.Credits}</span></label>
            @{fi}
          </div>
        </form>
        <div class="row col-md-12">
          <h3>Shares Count</h3>
          <label class="col-md-2">Restaurant action: <input type="text" style="width:120px" class="form-control" disabled value="@{model.restaurantActionCount}"></label>
          <label class="col-md-2">Restaurant feedback: <input type="text" style="width:120px" class="form-control" disabled value="@{model.restaurantFeedbackCount}"></label>
          <label class="col-md-2">Restaurant share: <input type="text" style="width:120px" class="form-control" disabled value="@{model.restaurantShareCount}"></label>
          <label class="col-md-2">Dish feedback: <input type="text" style="width:120px" class="form-control" disabled value="@{model.dishFeedbackCount}"></label>
          <label class="col-md-2">Dish share: <input type="text" style="width:120px" class="form-control" disabled value="@{model.dishShareCount}"></label>
        </div>


        <div class="row col-md-12 ">
          <br>
          <br>
          <h3>Shares History</h3>
          <table class="table table-borders table-striped">
              <thead>
                  <tr>
                      <th></th>
                      <th>Device</th>
                      <th>Dish</th>
                      <th>Email Subject</th>
                      <th>Restaurant</th>
                      <th>Share type</th>
                      <th>Date</th>
                  </tr>
              </thead>
              <tbody>
                  @{foreach item in model.shares}
                  <tr>
                      <td>@{index+1}</td>
                      <td>@{item.Device}</td>
                      <td>@{item['Dish title']}</td>
                      <td>@{item['Email Subject']}</td>
                      <td>@{item['Restaurant name']}</td>
                      <td>@{item['Share type']}</td>
                      <td>@{item.Date}</td>
                  </tr>
                  @{end}
              </tbody>
          </table>
        </div>
    </div>
<!--	<a href="/sharesHistory" style="width:80px" class="btn btn-default"><i class="fa fa-chevron-left" aria-hidden="true"></i> Back</a>-->
</div>