1234567891011121314151617181920212223242526 |
- {% from 'macro/ipv4.twig' import ajax_ipv4 %}
-
- {% if list is empty %}
- <h2 align="center">There are currently no users with more than {{ overlap }} IP overlaps.</h2>
- {% else %}
- {{ paginator.linkbox|raw }}
- <table width="100%">
- <tr class="colhead">
- <td>User</td>
- <td>IP address</td>
- <td>Dupes</td>
- <td>Joined</td>
- </tr>
- {% for item in list %}
- <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
- <td>{{ item.user_id|user_full }}</td>
- <td>
- <span style="float: left;">{{ ajax_ipv4(item.ipaddr) }} ({{ item.ipaddr }})</span><span style="float: right;"><a href="userhistory.php?action=ips&userid={{ item.user_id }}" title="History" class="brackets tooltip">H</a> <a href="user.php?action=search&ip_history=on&ip={{ item.ipaddr }}" title="Search" class="brackets tooltip">S</a></span>
- </td>
- <td>{{ item.uses|number_format }}</td>
- <td>{{ item.joined|time_diff }}</td>
- </tr>
- {% endfor %}
- </table>
- {{ paginator.linkbox|raw }}
- {% endif %}
|