{% extends "base.html" %} {% load i18n forum %} {% block content %} {% render_parent_list thread.get_parent_list %}

{{ thread }} {% if not thread.is_locked and can_reply %}({% trans 'reply' %}){% endif %}

{% if posts %} {% for post in posts %}

Post by {% if post.author %}{{ post.author }}{% else %}Anonymous{% endif %} at {{ post.pub_date|date:"D N d, Y h:i a" }}

{{ post.content }}

{% endfor %} {% endif %} {% if form %}

{% trans 'Reply to' %} {{ thread }}

{% render_reply_form thread form %} {% endif %} {% endblock %}