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.

announcekey-history.twig 558B

12345678910111213141516171819
  1. <div class="header">
  2. <h2><a href="/user.php?id={{ user.id }}">{{ user.username }}</a> &rsaquo; Announce Key History</h2>
  3. </div>
  4. <table width="100%">
  5. <tr class="colhead">
  6. <td>Old</td>
  7. <td>New</td>
  8. <td>Changed</td>
  9. <td>IP</td>
  10. </tr>
  11. {% for change in user.announceKeyHistory %}
  12. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  13. <td>{{ change.old }}</td>
  14. <td>{{ change.new }}</td>
  15. <td>{{ change.date|time_diff }}</td>
  16. <td>{{ change.ipaddr }}</td>
  17. </tr>
  18. {% endfor %}
  19. </table>