thread.html 994 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {% extends "misago/base.html" %}
  2. {% load i18n %}
  3. {% block title %}
  4. {% if paginator.page > 1 %}
  5. {{ thread.title }} ({% blocktrans with page=paginator.page %}page: {{ page }}{% endblocktrans %}) | {{ block.super }}
  6. {% else %}
  7. {{ thread.title }} | {{ block.super }}
  8. {% endif %}
  9. {% endblock title %}
  10. {% block content %}
  11. <div class="page page-thread {% if category.css_class %}page-thread-{{ category.css_class }}{% endif %}">
  12. <div class="page-header with-stats with-breadcrumbs">
  13. {% include "misago/thread/breadcrumbs.html" %}
  14. <div class="container">
  15. <h1>{{ thread.title }}</h1>
  16. </div>
  17. {% include "misago/thread/stats.html" %}
  18. </div>
  19. <div class="container">
  20. {% include "misago/thread/toolbar-top.html" %}
  21. {% if thread.poll %}
  22. {% include "misago/poll/index.html" with poll=thread.poll %}
  23. {% endif %}
  24. {% include "misago/thread/posts/index.html" %}
  25. {% include "misago/thread/paginator.html" %}
  26. </div>
  27. </div>
  28. {% endblock content %}