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-email.twig 559B

12345678910111213141516
  1. <tr><th colspan="3">Email History</th></tr>
  2. <tr>
  3. <th>Address</th>
  4. <th>Registered since</th>
  5. <th>Registered from</th>
  6. </tr>
  7. {% for i in info %}
  8. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  9. <td>{{ i.0 }}</td>
  10. <td>{{ i.1 }}</td>
  11. <td>{{ i.2 }}
  12. <a href="user.php?action=search&amp;ip_history=on&amp;ip={{ i.0 }}" class="brackets tooltip" title="Shared with other users?">S</a>
  13. <a href="https://whatismyipaddress.com/ip/{{ i.0 }}" class="brackets tooltip" title="Search WIMIA.com">WI</a>
  14. </td>
  15. </tr>
  16. {% endfor %}