{# vim: set ts=2 et sts=2 sw=2: #} {% extends "forums/base.html" %} {% from "layout/errorlist.html" import errorlist %} {# L10n: {f} is the name of the forum, {t} is the name of the thread. #} {% set title = _('Edit thread "{t}" | {f} | Forums')|f(t=thread.title, f=forum.name) %} {% set crumbs = [(url('forums.forums'), _('Forums')), (url('forums.threads', forum.slug), forum.name), (url('forums.posts', forum.slug, thread.id), thread.title), (None, _('Edit thread'))] %} {% block content %}

{{ _('Edit thread "{t}"')|f(t=thread.title) }}

{{ csrf() }} {{ errorlist(form) }}
{{ form.title.label_tag()|safe }} {{ form.title|safe }}
{% endblock %}