{% extends "base.html" %} {% load i18n fieldset_extras %} {% block title %} {% if object.pk %}{% trans "Edit Article" %}{% else %}{% trans "Create Article" %}{% endif %} {% endblock %} {% block extra_head %} {% endblock %} {% block maincontent %} {% get_fieldset "category, image" from form as fieldset_common %} {% get_fieldset "headline_de, content_de" from form as fieldset_de %} {% get_fieldset "headline_en, content_en" from form as fieldset_en %}
{% if object.pk %}{% trans "Edit Article" %}{% else %}{% trans "Create Article" %}{% endif %} {% csrf_token %} {% with fieldset_common as form %}{% include "form.html" %}{% endwith %}
Deutsch {% with fieldset_de as form %}{% include "form.html" %}{% endwith %}
English {% with fieldset_en as form %}{% include "form.html" %}{% endwith %}

{% endblock %} {% block javascript %} CKEDITOR.replace( 'id_content_de' ); CKEDITOR.replace( 'id_content_en' ); {% endblock %} {% block buttonbar %}{% endblock %}