{% extends "forum/base.html" %} {% load i18n cache %} {% block forum_content %} {% cache 30 forum_breadcrumbs_thread %} {% include "forum/parent_tree.html" %} {% endcache %}
{% 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.created|date }} {{ thread.title }}
{{ author|capfirst }} {% trans "says:" %}
{{ user_reply.html|safe }}
{% endwith %} {% endfor %}{# END replies #}
{% trans "Reply" %}
{% include "forum/paginate.html" %} {% endblock %}