{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load static %} {% load bootstrap3 %} {% block content %}

{% trans "Available plugins" %}

{% blocktrans trimmed %} On this page, you can choose plugins you want to enable for your organizer account. Plugins might bring additional software functionality, connect your events to third-party services, or apply other forms of customizations. {% endblocktrans %}

{% if "success" in request.GET %}
{% trans "Your changes have been saved." %}
{% endif %}

{% csrf_token %}
{% trans "Search results" %}
{% for cat, catlabel, plist, has_pictures in plugins %}
{{ catlabel }}
{% for plugin, is_active, settings_links, navigation_links, events_counter in plist %}
{% if plugin.featured %}
{% endif %}
{% if plugin.featured or plugin.experimental %}

{% if plugin.featured %} {% trans "Top recommendation" %} {% endif %} {% if plugin.experimental %} {% trans "Experimental feature" %} {% endif %}

{% endif %} {% if plugin.picture %}

{% endif %}

{{ plugin.name }} {% if show_meta %} {{ plugin.version }} {% endif %} {% if is_active or plugin.level == "event" %} {% if plugin.level == "organizer" %} {% trans "Active" %} {% elif events_total and events_counter == events_total %} {% trans "Active (all events)" %} {% elif events_counter %} {% blocktrans trimmed count count=events_counter %} Active ({{ count }} event) {% plural %} Active ({{ count }} events) {% endblocktrans %} {% elif level == "event_organizer" %} {% blocktrans trimmed count count=0 %} Active ({{ count }} event) {% plural %} Active ({{ count }} events) {% endblocktrans %} {% endif %} {% endif %}

{% include "pretixcontrol/event/fragment_plugin_description.html" with plugin=plugin %}
{% if plugin.app.compatibility_errors %}
{% trans "Incompatible" %}
{% elif plugin.restricted and plugin.module not in request.organizer.settings.allowed_restricted_plugins %}
{% trans "Not available" %}
{% elif is_active %} {% if plugin.level == "event_organizer" %}

{% trans "Parts of this plugin can be enabled or disabled for events individually." %}

{% endif %}
{% if navigation_links %}
{% endif %} {% if settings_links %}
{% endif %} {% if plugin.level == "event_organizer" %} {% trans "Manage events" %} {% endif %}
{% else %} {% if plugin.level == "organizer" %}
{% elif not plugin.level or plugin.level == "event" %}

{% trans "This plugin can be enabled or disabled for events individually." %}

{% elif plugin.level == "event_organizer" %}

{% trans "Parts of this plugin can be enabled or disabled for events individually." %}

{% endif %} {% endif %} {% if plugin.featured %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}