{% 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.module in plugins_active %} {% else %} {% endif %}

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

{{ plugin.description }}

{% endfor %}
{% endblock %}