{% extends "pretixcontrol/event/base.html" %} {% comment %} Owner from wave 2 on: portability-dev (see ORCHESTRIERUNG.md section 5). "Load template" confirmation. Same resolution table as the file import, because it is the same resolver (SPEC.md F10: einmal implementieren, zweimal nutzen). Nothing is written until the confirm button is pressed. {% endcomment %} {% load i18n %} {% block title %}{% trans "Load a report template" %}{% endblock %} {% block content %}

{% blocktrans trimmed with name=template.name %} Load template: {{ name }} {% endblocktrans %}

{% trans "Organizer" %}
{{ template.organizer.name }}
{% trans "Report base" %}
{{ template.get_base_display }}
{% if template.description %}
{% trans "Description" %}
{{ template.description }}
{% endif %}
{% include "pretix_custom_reports/resolution_report.html" %}
{% csrf_token %} {% if report.missing %}

{% blocktrans trimmed count counter=report.missing|length %} One reference of this template does not exist in this event. {% plural %} {{ counter }} references of this template do not exist in this event. {% endblocktrans %}

{% else %} {% endif %}
{% trans "Cancel" %}
{% endblock %}