{% extends "django_admin_wiki/base.html" %} {% block title %}{% if page %}Edit {{ page.title }}{% else %}New page{% endif %} — Admin Wiki{% endblock %} {% block content %}

{% if page %}Edit “{{ page.title }}”{% else %}New page{% endif %}

{% csrf_token %} {{ form.media }} {% if form.non_field_errors %} {% endif %} {% if not page %} {% else %} {{ form.slug }} {% endif %}
{{ form.content.label }} {{ form.content }} {{ form.content.errors }}
{% if page %} Cancel {% else %} Cancel {% endif %}
{% endblock %}