<!-- title row -->
<div class="row">
  <div class="col-md-12 col-xs-12">
    <h2 class="page-header">
      <i class="fa fa-globe"></i> {{model.booking.hotel.name}}
      <small class="pull-right">Date: {{model.createdAt}}</small>
    </h2>
  </div>
  <!-- /.col -->
</div>
<!-- info row -->
<div class="row invoice-info">
  <div class="col-sm-4 invoice-col">
    From
    <address>
      <strong>{{premise.name}}</strong>
      <br> {{premise.address}} {{premise.postal_code}}
      <br> {{premise.city}}, {{premise.country}}
      <br> Phone: {{premise.land_lines}} {{premise.mobiles}}
      <br> Email: {{premise.emails}}
    </address>
  </div>
  <!-- /.col -->
  <div class="col-sm-4 invoice-col">
    To
    <address>
      <strong>{{model.first_name}} {{model.last_name}}</strong>
      <br> {{model.address}}
      <br> Phone: {{model.mobiles}}
      <br> Email: {{model.emails}}
    </address>
  </div>
  <!-- /.col -->
  <div class="col-sm-4 invoice-col">
    <b>{{doctype}} #{{model.id}}</b><br>
    <br>
  </div>
  <!-- /.col -->
</div>
<!-- /.row -->

<!-- Table row -->
<div class="row">
  <div class="col-xs-12 table-responsive">
    <table class="table table-striped">
      <thead>
        <tr>
          <th>Date Added</th>
          <th>Amount Paid</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>{{moment-format model.createdAt 'ddd MMM DD YYYY hh:mm a'}}</td>
          <td>{{model.amount}}</td>
        </tr>
      </tbody>
    </table>
  </div>
  <!-- /.col -->
</div>
<!-- /.row -->
{{yield (action 'print')}}