{% extends "orga/base.html" %} {% load i18n %} {% load rich_text %} {% load static %} {% block scripts %} {% endblock scripts %} {% block stylesheets %} {% endblock stylesheets %} {% 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.highlighted %} {% translate "Recommended" %} {% endif %} {% if plugin.module in plugins_active %} {% else %} {% endif %}
{% include "orga/includes/plugin_card_body.html" %}
{% endfor %}
{% endfor %}
{% else %}
{% translate "This instance does currently not have any plugins installed." %}
{% endif %} {% endblock content %}