{% extends "forum_base.html" %} {% load i18n %} {% block title %}{{ thread.title|escape }} ({{ forum.title }}){% endblock %} {% block pagetitle %}{{ forum.title }} » {{ thread.title|escape }}{% endblock %} {% block breadcrumbs %}{% for title, url in thread.forum.get_url_name %} » {{ title }}{% endfor %} » {{ thread.title|escape }} ({{ thread.posts }} {% blocktrans count thread.posts as counter %}post{% plural %}posts{% endblocktrans %}){% endblock %} {% block content %} {% for post in post_list %} {% endfor %}
{% blocktrans with post.time|timesince as time %}{{ time }} ago{% endblocktrans %}
{% trans "by" %} {{ post.author }}
{{ post.body_html|safe }}
{% if is_paginated %} {% endif %} {% if request.user.is_authenticated %}

{% trans "Update Subscriptions" %}

{% endif %}

{% trans "Post a Reply" %}

{% if thread.closed %}

{% trans "Sorry, this thread is closed. No further replies are permitted." %}

{% else %} {% if user.is_authenticated %}
{% csrf_token %}

{{ user.username }}

{{ form.as_p }}
{% else %}

Please login to post a reply.

{% endif %} {% endif %} {% endblock %}