{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %} {% load bootstrap3 %} {% block inside %}
{% csrf_token %}
{% trans "Installed plugins" %} {% if "success" in request.GET %}
{% trans "Your changes have been saved." %}
{% endif %}
{% for plugin in plugins %}

{{ plugin.name }}

{% if plugin.app.compatibility_errors %} {% elif plugin.module in plugins_active %} {% else %} {% endif %}
{% if plugin.author %}

{% blocktrans trimmed with v=plugin.version a=plugin.author %} Version {{ v }} by {{ a }} {% endblocktrans %}

{% else %}

{% blocktrans trimmed with v=plugin.version a=plugin.author %} Version {{ v }} {% endblocktrans %}

{% endif %}

{{ plugin.description }}

{% if plugin.app.compatibility_errors %}
{% trans "This plugin cannot be enabled for the following reasons:" %}
    {% for e in plugin.app.compatibility_errors %}
  • {{ e }}
  • {% endfor %}
{% endif %} {% if plugin.app.compatibility_warnings %}
{% trans "This plugin reports the following problems:" %}
    {% for e in plugin.app.compatibility_warnings %}
  • {{ e }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}