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

{% trans "Reply to Thread" %}

{% 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 "Post a reply to thread" %} {{ thread.title }}.
{% endblock %}