forum.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {% set page_title = forum.title ~ " - Forum" %}
  2. {% set active_forum_nav=True %}
  3. {% extends "layout.html" %}
  4. {% block content %}
  5. {% from 'macros.html' import render_pagination %}
  6. <ol class="breadcrumb">
  7. <li><a href="{{ url_for('forum.index') }}">Forum</a></li>
  8. <li><a href="{{ url_for('forum.view_category', category_id=forum.parent_id) }}">{{ forum.parent.title }}</a></li>
  9. <li class="active">{{ forum.title }}</li>
  10. </ol>
  11. <div class="pull-left" style="padding-bottom: 10px">
  12. {{ render_pagination(topics, url_for('forum.view_forum', forum_id=forum.id)) }}
  13. </div> <!-- end span pagination -->
  14. {% if current_user|post_topic(forum) %}
  15. <div class="pull-right" style="padding-bottom: 10px">
  16. <a href="{{ url_for('forum.new_topic', forum_id=forum.id) }}" class="btn btn-primary">New Topic</a>
  17. </div>
  18. {% endif %}
  19. <table class="table table-bordered">
  20. <thead>
  21. <tr>
  22. <th colspan="5">
  23. {{ forum.title }}
  24. </th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <tr>
  29. <td colspan="2">Thread</td>
  30. <td>Posts</td>
  31. <td>Views</td>
  32. <td>Last Post</td>
  33. </tr>
  34. {% for topic in topics.items %}
  35. <tr>
  36. <td width="4%"></td>
  37. <td>
  38. <div>
  39. <a href="{{ url_for('forum.view_topic', topic_id=topic.id) }}">{{ topic.title }}</a> <br />
  40. <small>by <a href="{{ url_for('user.profile', username=topic.user.username) }}">{{ topic.user.username }}</a></small>
  41. </div>
  42. </td>
  43. <td>
  44. {{ topic.post_count }}
  45. </td>
  46. <td>
  47. {{ topic.views }}
  48. </td>
  49. <td>
  50. <a href="{{ url_for('forum.view_post', post_id=topic.last_post.id) }}">{{ topic.last_post.date_created|time_since }}</a><br />
  51. <small>by <a href="{{ url_for('user.profile', username=topic.last_post.user.username) }}">{{ topic.last_post.user.username }}</a></small>
  52. </td>
  53. </tr>
  54. {% else %}
  55. <tr>
  56. <td colspan="5">
  57. No Topics so far.
  58. </td>
  59. </tr>
  60. {% endfor %}
  61. </tbody>
  62. </table>
  63. {% endblock %}