shop.balmet.com

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

installer_history.twig (1015B)


      1 <div class="table-responsive">
      2   <table class="table table-bordered">
      3     <thead>
      4       <tr>
      5         <th>{{ column_filename }}</th>
      6         <th>{{ column_date_added }}</th>
      7         <th class="text-right">{{ column_action }}</th>
      8       </tr>
      9     </thead>
     10     <tbody>
     11     
     12     {% if histories %}
     13     {% for history in histories %}
     14     <tr>
     15       <td>{{ history.filename }}</td>
     16       <td>{{ history.date_added }}</td>
     17       <td class="text-right"><button type="button" value="{{ history.extension_install_id }}" data-loading="{{ text_loading }}" data-toggle="tooltip" title="{{ button_uninstall }}" class="btn btn-danger"><i class="fa fa-trash-o"></i></button></td>
     18     </tr>
     19     {% endfor %}
     20     {% else %}
     21     <tr>
     22       <td colspan="3" class="text-center">{{ text_no_results }}</td>
     23     </tr>
     24     {% endif %}
     25     </tbody>
     26     
     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>