{% extends "forums/base.html" %} {% from "layout/errorlist.html" import errorlist %} {% from "includes/common_macros.html" import content_editor with context %} {# L10n: {f} if the name of the forum, {t} if the name of the thread. #} {% set title = _('Edit a post | {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 a post'))] %} {% set scripts = ('forums',) %} {% set ga_content_group = "contributor-forum-post-edit" %} {% block content %}

{{ _('Edit a post') }}

{% csrf_token %} {{ errorlist(form) }}
{{ form.content.label_tag()|safe }}
{{ content_editor(form.content) }}
{{ _('Cancel') }}
{% if post_preview %} {% include "forums/includes/post_preview.html" %} {% endif %}
{% endblock %}