{% extends "forum/base.html" %} {% load markup %} {% load i18n %} {% block title %}{% trans "Forum" %} :: {{ forum.title }} :: {{ thread.title }}{% endblock %} {% block breadcrumbs %}{% trans "Forum" %} / {{ forum.title }} / {{ thread.title }}{% endblock %} {% block content %}

{% trans "Thread" %} {{ thread.title }}

{% if is_paginated %} « {% for page_number in paginator.page_range %}{% ifequal page_number page %}{{ page_number }}{% else %}{{ page_number }}{% endifequal %} {% endfor %} » {% endif %}
{% for post in post_list %}
{{ post.author }} ({% blocktrans with post.time|timesince as time %}{{ time }} ago{% endblocktrans %})
{{ post.body_html|safe }}
{% endfor %}
{% if is_paginated %} « {% for page_number in paginator.page_range %}{% ifequal page_number page %}{{ page_number }}{% else %}{{ page_number }}{% endifequal %} {% endfor %} » {% endif %}
{% if thread.closed %}
{% trans "Sorry, this thread is closed. No further replies are permitted." %}
{% else %} {% include "forum/form_reply.html" %} {% endif %} {% endblock %} {% block aside-info %}
{% trans "View this thread and post a reply." %}
{% endblock %}