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.

thread-history.twig 1.0KB

1234567891011121314151617181920212223242526272829
  1. <div class="thin">
  2. <div class="header">
  3. <h2><a href="user.php?id={{ user.id }}">{{ user.username }}</a> &rsaquo; Threads created</h2>
  4. </div>
  5. {% if not page %}
  6. <div class="center">
  7. {{ user.username }} has not created any threads.
  8. </div>
  9. {% else %}
  10. {{ paginator.linkbox|raw }}
  11. <table class="forum_list border">
  12. <tr class="colhead">
  13. <td>Forum</td>
  14. <td>Thread</td>
  15. <td>Created</td>
  16. <td>Most recent post</td>
  17. </tr>
  18. {% for t in page %}
  19. <tr>
  20. <td><a href="forums.php?action=viewforum&forumid={{ t.forum_id }}">{{ t.forum_title }}</a></td>
  21. <td><a href="forums.php?action=viewthread&threadid={{ t.thread_id }}">{{ t.thread_title }}</td>
  22. <td class="nowrap">{{ t.created_time|time_diff }}</td>
  23. <td class="nowrap">{{ t.last_post_time|time_diff }}</td>
  24. </tr>
  25. {% endfor %}
  26. </table>
  27. {{ paginator.linkbox|raw }}
  28. {% endif %}
  29. </div>