{% extends 'generic/object_list.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% load render_table from django_tables2 %} {% block title %}{% trans "Plugins" %}{% endblock %} {% block tabs %} {% endblock tabs %} {% block content %} {# Core Plugins tab #}
{% for plugin in core_plugins %}

{% if plugin.status == 'installed' %} {{ plugin.title }} {% else %} {{ plugin.title }} {% endif %} {% if plugin.status == 'locked' %} {% endif %}

{% if plugin.status != 'locked' %} {{ plugin.status_label }} {% if plugin.status == 'installed' and plugin.installed_version %} v{{ plugin.installed_version }} {% elif plugin.status == 'available' and plugin.latest_version %} v{{ plugin.latest_version }} {% endif %} {% endif %}

{{ plugin.description }}

{% if plugin.status == 'locked' %} {% endif %}
{% endfor %}
{# Community Plugins tab #}
{% include 'inc/table_controls_htmx.html' with table_modal="ObjectTable_config" %}
{% include 'htmx/table.html' %}
{% endblock content %}