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.

password-history.twig 688B

12345678910111213141516
  1. <div class="header">
  2. <h2><a href="/user.php?id={{ user.id }}">{{ user.username }}</a> &rsaquo; Password reset history</h2>
  3. </div>
  4. <table width="100%">
  5. <tr class="colhead">
  6. <td>Changed</td>
  7. <td>IP <a href="/userhistory.php?action=ips&amp;userid={{ user.id }}" class="brackets">H</a></td>
  8. </tr>
  9. {% for change in list %}
  10. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  11. <td>{{ change.date|time_diff }}</td>
  12. <td>{{ change.ipaddr }} <a href="/user.php?action=search&amp;ip_history=on&amp;ip={{ change.ipaddr }}" class="brackets tooltip" title="Search">S</a><br />{{ resolveIpv4(change.ipaddr) }}</td>
  13. </tr>
  14. {% endfor %}
  15. </table>
  16. <?php