BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

duplicate-ipaddr.twig 1.0KB

1234567891011121314151617181920212223242526
  1. {% from 'macro/ipv4.twig' import ajax_ipv4 %}
  2. {% if list is empty %}
  3. <h2 align="center">There are currently no users with more than {{ overlap }} IP overlaps.</h2>
  4. {% else %}
  5. {{ paginator.linkbox|raw }}
  6. <table width="100%">
  7. <tr class="colhead">
  8. <td>User</td>
  9. <td>IP address</td>
  10. <td>Dupes</td>
  11. <td>Joined</td>
  12. </tr>
  13. {% for item in list %}
  14. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  15. <td>{{ item.user_id|user_full }}</td>
  16. <td>
  17. <span style="float: left;">{{ ajax_ipv4(item.ipaddr) }} ({{ item.ipaddr }})</span><span style="float: right;"><a href="userhistory.php?action=ips&amp;userid={{ item.user_id }}" title="History" class="brackets tooltip">H</a> <a href="user.php?action=search&amp;ip_history=on&amp;ip={{ item.ipaddr }}" title="Search" class="brackets tooltip">S</a></span>
  18. </td>
  19. <td>{{ item.uses|number_format }}</td>
  20. <td>{{ item.joined|time_diff }}</td>
  21. </tr>
  22. {% endfor %}
  23. </table>
  24. {{ paginator.linkbox|raw }}
  25. {% endif %}