{% extends "blogango/admin/base.html" %} {% load adminmedia %} {% block title %} {% if entry %} Editing entry:: {{ entry_form.initial.title }} {% else %} New Entry {% endif %} ​{{ title_suffix }} {% endblock %} {% block page_head %} {% endblock %} {% block subnavbar %} {% endblock %} {% block contents %}
{% if 'done' in request.GET %}
Blog entry saved successfully
{% endif %}
{% if entry %}

{{ entry.title }} — ​ Edit Entry {% if entry.is_published %} {{ _("View Entry") }} {% else %} {{ _("Preview Entry") }} {% endif %}

{% endif %} {% if entry_form.errors %} Please correct the following errors: {% endif %}
{% csrf_token %}

{{ entry_form.title }}

{{ entry_form.text }}

{{ entry_form.text_markup_type }}

{{ entry_form.tags }}

{{ entry_form.publish_date }}

{{ entry_form.comments_allowed }}
{% if 'page' in request.GET %} {% endif %}
{% endblock %}