{% extends "pretixcontrol/event/base.html" %} {% comment %} Owner from wave 2 on: portability-dev (see ORCHESTRIERUNG.md section 5). Event-level list of the organizer's templates (SPEC.md F10). The link leads to the confirmation page, never straight to a copy: whether every question of the template exists in this event is exactly what the next page is about. {% endcomment %} {% load i18n %} {% block title %}{% trans "Load a report template" %}{% endblock %} {% block content %}

{% trans "Load a report template" %}

{% blocktrans trimmed %} Loading a template creates a copy in this event that you can edit freely. The template itself is not affected. {% endblocktrans %}

{% if templates %}
{% for template in templates %} {% endfor %}
{% trans "Name" %} {% trans "Report base" %}
{{ template.name }} {% if template.description %}
{{ template.description }} {% endif %}
{{ template.get_base_display }} {% trans "Load" %}
{% include "pretixcontrol/pagination.html" %} {% else %}

{% trans "This organizer has no report templates yet." %}

{% endif %}

{% trans "Back" %}

{% endblock %}