{% extends "forum_base.html" %} {% load i18n %} {% block title %}{% blocktrans with thread.title as title %}Reply to thread "{{ title }}"{% endblocktrans %}{% endblock %} {% block pagetitle %}{% blocktrans with thread.title as title %}Reply to Thread "{{ title }}"{% endblocktrans %}{% endblock %} {% block breadcrumbs %}{% for title, url in thread.forum.get_url_name %} » {{ title }}{% endfor %} » {{ thread.title|escape }} » Reply{% endblock %} {% block content %}

{% trans "Reply to Thread" %}

{% csrf_token %} {% if form.errors %}{% endif %}

{{ user.username }}

{{ form.as_p }}

{% endblock %}