shop.balmet.com

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

customer_history.twig (791B)


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