<div class="box max-height-css">
  <div class="box-header with-border">
    <h3 class="box-title">Booking List</h3>
  </div>
  <!-- /.box-header -->
  <div class="box-body">
    <table class="table table-bordered">
      <tbody>
        <tr>
          <th style="width: 10px">#</th>
          <th>Contact Name</th>
          <th>Group Name</th>
          <th>Date Added</th>
          <th style="width: 40px">View</th>
        </tr>
        {{#each model as |item|}}
          <tr>
            <td>#</td>
            <td>{{item.guest.first_name}} {{item.guest.last_name}}</td>
            <td>{{item.group_name}}</td>
            <td>{{moment-format item.createdAt 'MMM Do YYYY, h:mm a'}}</td>
            <td>
              {{#link-to 'admin.tasks.bookings.view' item.id class='btn btn-primary btn-xs' }}View{{/link-to}}
            </td>
          </tr>
        {{/each}}
      </tbody>
    </table>
  </div>
  <!-- /.box-body -->
  <div class="box-footer clearfix">
    {{simple-pagination limit=limit currentPage=currentPage total=model.meta.total}}
  </div>
</div>
<!-- /.box -->