{% extends "misago/base.html" %} {% load humanize i18n misago_avatars misago_stringutils %} {% block title %}{{ thread }}{% if page.number > 1 %} ({% blocktrans with page=page.number %}Page {{ page }}{% endblocktrans %}){% endif %} | {{ block.super }}{% endblock title %} {% block meta-description %}{% if thread.first_post.is_valid %}{{ thread.first_post.short|striplinebreaks }} {% endif %}{% blocktrans trimmed with replies=thread.replies started=thread.started_on|date last_post=thread.last_post_on|date count counter=thread.replies %} {{ replies }} reply since {{ started }}. Last post on {{ last_post }}. {% plural %} {{ replies }} replies since {{ started }}. Last post on {{ last_post }}. {% endblocktrans %}{% endblock meta-description %} {% block content %}
{% block thread-nav %} {% include "misago/thread/pagination.html" %} {% if thread.acl.can_review and thread.has_moderated_posts %} {% endif %} {% if thread.acl.can_see_reports and thread.has_reported_posts %} {% endif %} {% endblock thread-nav %} {% block thread-actions %} {% if thread_actions %} {% include "misago/thread/thread_actions.html" %} {% endif %} {% endblock thread-actions %}
{% for post in posts %} {% include "misago/thread/post.html" %} {% endfor %}
{% block thread-nav-down %} {% include "misago/thread/pagination.html" %} {% endblock thread-nav-down %} {% block post-actions %} {% if posts_actions %} {% include "misago/thread/posts_actions.html" %} {% endif %} {% endblock post-actions %}
{% if thread_reply_message %}

{{ thread_reply_message }}

{% else %} {% endif %}
{% endblock %} {% block javascripts %} {{ block.super }} {% if user.is_authenticated %} {% include "misago/thread/actions_js.html" %} {% if forum.acl.can_hide_events %} {% include "misago/thread/events_js.html" %} {% endif %} {% if thread.acl.can_review and thread.has_moderated_posts %} {% endif %} {% if thread.acl.can_see_reports and thread.has_reported_posts %} {% endif %} {% if thread.acl.can_reply %} {% endif %} {% endif %} {% endblock javascripts %}