shop.balmet.com

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

customer_ip.twig (995B)


      1 <div class="table-responsive">
      2   <table class="table table-bordered table-hover">
      3     <thead>
      4       <tr>
      5         <td class="text-left">{{ column_ip }}</td>
      6         <td class="text-right">{{ column_total }}</td>
      7         <td class="text-left">{{ column_date_added }}</td>
      8       </tr>
      9     </thead>
     10     <tbody>
     11       {% if ips %}
     12       {% for ip in ips %}
     13       <tr>
     14         <td class="text-left"><a href="http://www.geoiptool.com/en/?IP={{ ip.ip }}" target="_blank">{{ ip.ip }}</a></td>
     15         <td class="text-right"><a href="{{ ip.filter_ip }}" target="_blank">{{ ip.total }}</a></td>
     16         <td class="text-left">{{ ip.date_added }}</td>      </tr>
     17       {% endfor %}
     18       {% else %}
     19       <tr>
     20         <td class="text-center" colspan="3">{{ text_no_results }}</td>
     21       </tr>
     22       {% endif %}
     23     </tbody>
     24   </table>
     25 </div>
     26 <div class="row">
     27   <div class="col-sm-6 text-left">{{ pagination }}</div>
     28   <div class="col-sm-6 text-right">{{ results }}</div>
     29 </div>