{% extends "forum/base.html" %} {% load i18n %} {% block forum_content %} {% include "forum/parent_tree.html" %}
{{ thread.title }}
{% if thread.image %}
thread image
{% endif %} {% if thread.attach %}
{% trans "File" %}: {{ thread.get_attach_basename }} {{ thread.attach.size|filesizeformat }}
{% endif %}
{% for user_reply in object_list %} {% with user_reply.author as author %}
{{ user_reply.creation_time|date }}
{{ author|capfirst }} {% trans "says:" %}
{{ user_reply.html|safe }}
{% endwith %} {% endfor %}{# END replies #}
{% trans "Reply" %}
{% include "forum/paginate.html" %} {% endblock %}