{% extends "blog/base.html" %} {% load i18n %} {% load wiki %} {% load markup %} {% load switchcase %} {% load tagging_tags %} {% load restructuredtext %} {% block head_title %}{% blocktrans %}Editing Post{% endblocktrans %}{% endblock %} {% block body %}
{% trans "Editing Post" %} {% ifequal post.author request.user %}
{% for field in blog_form %} {% if field.errors %}{% endif %} {% ifequal field.name "tease" %}{% else %}{% endifequal %} {% if field.help_text %}{% endif %} {% endfor %}
{{ blog_form.non_field_errors }}
{{ field.errors }}
{{ field.label_tag }} {% ifequal field.name "body" %} {% trans "Teaser" %} {% endifequal %} {{ field }}
{{ field.help_text }}
{% else %}

You are not the author of this post.

{% endifequal %}
{% endblock %}