shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

coupon_history.twig (1039B)


      1 <div class="table-responsive">
      2   <table class="table table-bordered table-hover">
      3     <thead>
      4       <tr>
      5         <td class="text-right">{{ column_order_id }}</td>
      6         <td class="text-left">{{ column_customer }}</td>
      7         <td class="text-right">{{ column_amount }}</td>
      8         <td class="text-left">{{ column_date_added }}</td>
      9       </tr>
     10     </thead>
     11     <tbody>
     12       {% if histories %}
     13       {% for history in histories %}
     14       <tr>
     15         <td class="text-right">{{ history.order_id }}</td>
     16         <td class="text-left">{{ history.customer }}</td>
     17         <td class="text-right">{{ history.amount }}</td>
     18         <td class="text-left">{{ history.date_added }}</td>
     19       </tr>
     20       {% endfor %}
     21       {% else %}
     22       <tr>
     23         <td class="text-center" colspan="4">{{ text_no_results }}</td>
     24       </tr>
     25       {% endif %}
     26     </tbody>
     27   </table>
     28 </div>
     29 <div class="row">
     30   <div class="col-sm-6 text-left">{{ pagination }}</div>
     31   <div class="col-sm-6 text-right">{{ results }}</div>
     32 </div>