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.

user-info-ipv4.twig 410B

123456789101112131415
  1. <tr><th colspan="3">{{ title }}</th></tr>
  2. <tr>
  3. <th>Address IPv4</th>
  4. <th>First seen</th>
  5. <th>Last seen</th>
  6. </tr>
  7. {% for i in info %}
  8. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  9. <td>{{ i.0 }}
  10. <a href="https://whatismyipaddress.com/ip/{{ i.0 }}" class="brackets tooltip" title="Search WIMIA.com">WI</a>
  11. </td>
  12. <td>{{ i.1 }}</td>
  13. <td>{{ i.2 }}</td>
  14. </tr>
  15. {% endfor %}