{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% block title %}{% trans "Page" %}{% endblock %} {% block content %}

{% trans "Page" %}

{% csrf_token %} {% bootstrap_form_errors form type='non_fields' %}
{% trans "General information" %} {% bootstrap_field form.title layout="horizontal" %} {% bootstrap_field form.slug layout="horizontal" %} {% if page.id %}
{% include "pretixcontrol/event/fragment_qr_dropdown.html" with url=url %}
{% endif %} {% bootstrap_field form.link_on_frontpage layout="horizontal" %} {% bootstrap_field form.link_in_footer layout="horizontal" %} {% bootstrap_field form.require_confirmation layout="horizontal" %}
{% trans "Page content" %}
{% for lng, text in locales %}
{{ text|safe }}
{% endfor %}
{{ form.text }}
{% if page %}

{% trans "Page history" %}

{% include "pretixcontrol/includes/logs.html" with obj=page %}
{% endif %}
{% endblock %}