{% extends "orga/base.html" %} {% load i18n %} {% load rich_text %} {% block extra_title %}{% translate "Plugins" %} :: {% endblock extra_title %} {% block content %}

{% translate "Plugins" %}

{% if grouped_plugins %} {% include "orga/includes/tablist.html" %}
{% csrf_token %} {% for category, plugins in grouped_plugins.items %}
{% for plugin in plugins %}
{{ plugin.name }} {% if plugin.module in plugins_active %} {% else %} {% endif %}
  • {% if plugin.author %}

    {% blocktranslate trimmed with v=plugin.version a=plugin.author %} Version {{ v }} by {{ a }} {% endblocktranslate %}

    {% else %}

    {% blocktranslate trimmed with v=plugin.version a=plugin.author %} Version {{ v }} {% endblocktranslate %}

    {% endif %} {{ plugin.description|rich_text }}
{% endfor %}
{% endfor %}
{% else %}
{% translate "This instance does currently not have any plugins installed." %}
{% endif %} {% endblock content %}