{% extends "base.html" %} {% load i18n fieldset_extras %} {% block title %} {% if object.pk %}{% trans "Edit Page" %}: {{ page.title }}{% else %}{% trans "Add Page" %}{% endif %} {% endblock %} {% block extra_head %} {% endblock %} {% block jumbotron_background %}{{STATIC_URL}}img/teaser/edit_page.jpg{% endblock %} {% block teaser %} {% if object.pk %}

{% trans 'Edit' %}{{ page.title }}

{% else %}

{% trans "Add Page" %}

{% endif %} {% endblock %} {% block maincontent %} {% get_fieldset "parent, slug, content_type, status" from form as fieldset_common %} {% get_fieldset "menu_name_de, title_de, pdf_de" from form as fieldset_de %} {% get_fieldset "menu_name_en, title_en, pdf_en" from form as fieldset_en %} {% get_fieldset "template, enable_comments" from form as fieldset_html %}
{{ form.media }}
{% csrf_token %} {% if object.pk %}{% trans "Edit Page" %}{% else %}{% trans "Add Page" %}{% endif %} {% with fieldset_common as form %}{% include "form.html" %}{% endwith %} {% trans "HTML Specific" %} {% with fieldset_html as form %}{% include "form.html" %}{% endwith %}
{% trans "German" %} {% with fieldset_de as form %}{% include "form.html" %}{% endwith %}

{{form.content_de}}
{% trans "English" %} {% with fieldset_en as form %}{% include "form.html" %}{% endwith %}

{{form.content_en}}

{% endblock %}