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.

main.twig 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% if seen == 1 %}
  2. <a name="{{ category_id }}"></a>
  3. <h3>{{ category }}</h3>
  4. <table class="forum_index m_table">
  5. <tr class="colhead">
  6. <td style="width: 2%;"></td>
  7. <td class="m_th_left" style="width: 25%;">Forum</td>
  8. <td>Last Post</td>
  9. <td class="m_th_right" style="width: 7%;">Topics</td>
  10. <td class="m_th_right" style="width: 7%;">Posts</td>
  11. </tr>
  12. {% endif %}
  13. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  14. <td class="td_read {{ icon_class }} {{ tooltip }}" title="{{ icon_class|replace({'_': ' '})|ucfirstall }}"></td>
  15. <td class="td_forum">
  16. <h4 class="min_padding">
  17. <a class="{{ tooltip }}" href="forums.php?action=viewforum&amp;forumid={{ forum_id }}" title="{{ description }}">{{ name }}</a>
  18. </h4>
  19. </td>
  20. {% if not threads %}
  21. <td class="td_latest">
  22. There are no topics here.{% if creator %} <a href="forums.php?action=new&amp;forumid={{ forum_id }}">Create one!</a>{% endif %}
  23. </td>
  24. {% else %}
  25. <td class="td_latest">
  26. <span style="float: left;" class="last_topic">
  27. <a href="forums.php?action=viewthread&amp;threadid={{ id }}" class="tooltip" data-title-plain="{{ title }}"{%
  28. if title != cut_title %} title="{{ title }}"{% endif %}>{{ cut_title }}</a>
  29. </span>
  30. {% if is_read %}
  31. <span style="float: left;" class="{{ tooltip }} last_read" title="Jump to last read">
  32. <a href="forums.php?action=viewthread&amp;threadid={{ id }}&amp;page={{ last_read_page }}#post{{ last_read_post }}"></a>
  33. </span>
  34. {% endif %}
  35. <span style="float: right;" class="last_poster">by {{ last_post_user|raw }} {{ last_post_diff|raw }}</span>
  36. </td>
  37. {% endif %}
  38. <td class="td_topic_count number_column m_td_right">{{ num_topics|number_format }}</td>
  39. <td class="td_post_count number_column m_td_right">{{ num_posts|number_format }}</td>
  40. </tr>