category_layout.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <table class="table table-bordered">
  2. <thead class="categoryhead">
  3. <tr>
  4. <td colspan="5">
  5. <div><strong><a href="{{ url_for('forum.view_forum', forum_id=category.id) }}">{{ category.title }}</a></strong></div>
  6. </td>
  7. </tr>
  8. </thead>
  9. <tbody class="forumbody">
  10. <tr class="forum_stats">
  11. <td colspan="2"><strong>Forum</strong></td>
  12. <td width="85" align="center" style="white-space: nowrap"><strong>Topics</strong></td>
  13. <td width="85" align="center" style="white-space: nowrap"><strong>Posts</strong></td>
  14. <td width="200" align="center" style="white-space: nowrap"><strong>Last Post</strong></td>
  15. </tr>
  16. {% for forum in category.children %}
  17. <tr>
  18. <td align="center" valign="center" width="1">
  19. New </br> Posts
  20. </td>
  21. <td valign="top">
  22. <strong><a href="{{ url_for('forum.view_forum', forum_id=forum.id) }}">{{ forum.title }}</a></strong>
  23. <div class="forum-description">
  24. {% autoescape false %}
  25. {{ forum.description|markup }}
  26. {% endautoescape %}
  27. </div>
  28. {% if forum.children|length %}
  29. <div class="forum-subforums">
  30. <ul class="list-inline">
  31. <li><strong>Subforums:</strong></li>
  32. {% for subforum in forum.children %}
  33. <li>
  34. <a href="{{ url_for('forum.view_forum', forum_id=subforum.id) }}">{{ subforum.title }}</a>
  35. </li>
  36. {% endfor %}
  37. </ul>
  38. </div>
  39. {% endif %}
  40. </td>
  41. <td valign="top" align="center" style="white-space: nowrap">{{ forum.topic_count }}</td>
  42. <td valign="top" align="center" style="white-space: nowrap">{{ forum.post_count }}</td>
  43. <td valign="top" align="right" style="white-space: nowrap">
  44. {% if forum.last_post %}
  45. <a href="{{ url_for('forum.view_post', post_id=forum.last_post.id) }}" title="{{ forum.last_post.topic.title }}">
  46. <strong>{{ forum.last_post.topic.title|crop_title }}</strong>
  47. </a>
  48. <br />
  49. {{ forum.last_post.date_created|time_since }}<br />
  50. by <a href="{{ url_for('user.profile', username=forum.last_post.user.username) }}">{{ forum.last_post.user.username }}</a>
  51. {% else %}
  52. No posts
  53. {% endif %}
  54. </td>
  55. </tr>
  56. {% endfor %}
  57. </tbody>
  58. </table>