Ekdant-Online-Store/admininistrator/view/template/customer/customer_ip.twig
2024-08-06 18:06:00 +05:45

35 lines
1.2 KiB
Twig

<div class="table-responsive">
<table class="table table-bordered table-hover">
<thead>
<tr>
<td class="text-start">{{ column_ip }}</td>
<td class="text-end">{{ column_account }}</td>
<td class="text-start">{{ column_store }}</td>
<td class="text-start">{{ column_country }}</td>
<td class="text-start">{{ column_date_added }}</td>
</tr>
</thead>
<tbody>
{% if ips %}
{% for ip in ips %}
<tr>
<td class="text-start"><a href="https://whatismyipaddress.com/ip/{{ ip.ip }}" target="_blank">{{ ip.ip }}</a></td>
<td class="text-end"><a href="{{ ip.filter_ip }}" target="_blank">{{ ip.account }}</a></td>
<td class="text-start">{{ ip.store }}</td>
<td class="text-start">{{ ip.country }}</td>
<td class="text-start">{{ ip.date_added }}</td>
</tr>
{% endfor %}
{% else %}
<tr>
<td class="text-center" colspan="5">{{ text_no_results }}</td>
</tr>
{% endif %}
</tbody>
</table>
</div>
<div class="row">
<div class="col-sm-6 text-start">{{ pagination }}</div>
<div class="col-sm-6 text-end">{{ results }}</div>
</div>