flat_page_edit.html 290 Bytes
{% extends "base.html" %}
{% load i18n %}

{% block text-content %}
    <a href="{% url 'flat_pages' %}"></a>
    <form action="" method="post">
        {% csrf_token %}
        {{ page_form.as_p }}
        <p><button type="submit">{% trans 'Save' %}</button></p>
    </form>
{% endblock %}