{% extends 'stadt/stadt.html' %} {% block heading_title %} Beitrag {% endblock %} {% block sidebar %} {% include 'associations/_sidebar_entity.html' with entity=view.entity %} {% endblock %} {% block content %}
{% csrf_token %} {% include 'core/_form_errors.html' with form=form %}
{% include 'core/_field.html' with field=form.title %} {% if form.text %}
{% include 'core/_field.html' with field=form.text %}

Einfacher Text wird automatisch formatiert. {% if form.fields.text.widget.has_buttons %} Besondere Formatierungen lassen sich mit den Knöpfen oben erzeugen. {% endif %} Erläuterungen gibt es in der  Hilfe zur Textauszeichnung.

{% endif %} {% block form_extra %}{% endblock %}
{% if form.time %}
{% include 'core/_field.html' with field=form.place %}
{% include 'core/_field.html' with field=form.time %} {% include 'core/_field.html' with field=form.until_time %} {% include 'core/_field.html' with field=form.all_day %}
{% if settings_enable_repetitions %}
{% include 'core/_field.html' with field=form.time_repetitions_period %} {% include 'core/_field.html' with field=form.time_repetitions_count %}
{% endif %}
{% endif %}
{% block content_submission_header %}

Beitragseinstellungen

{% endblock %}
{% if form.image %} {% include 'core/_field.html' with field=form.image %} {% endif %} {% block extra_settings_left %}{% endblock %}
{% if form.public %} {% include 'core/_checkbox_field.html' with field=form.public %} {% endif %} {% if form.pinned %}
{% include 'core/_checkbox_field.html' with field=form.pinned %}
{% endif %} {% block extra_settings_right %}{% endblock %}
{% block extra_form_content %}{% endblock %}
{% endblock %}