{% trans "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." %}
{% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_SCHEDULE" icon="fa-calendar-alt" %}
{% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_EVENTS" icon="fa-reply-all" %}
{% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_URL" icon="fa-link" %}
{% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_NAVIGATION" icon="fa-sitemap" %}
{% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_APP" icon="fa-rocket" %}
{% include "InvenTree/settings/setting.html" with key="PLUGIN_ON_STARTUP" %}
{% include "InvenTree/settings/setting.html" with key="PLUGIN_CHECK_SIGNATURES" %}
{% plugins_enabled as plug %}
{% trans "Plugins" %}
{% include "spacer.html" %}
{% url 'admin:plugin_pluginconfig_changelist' as url %}
{% include "admin_button.html" with url=url %}
{% if plug %}
{% endif %}
{% if not plug %}
{% trans "External plugins are not enabled for this InvenTree installation" %}
{% endif %}
{% trans "Name" %}
{% trans "Key" %}
{% trans "Author" %}
{% trans "Date" %}
{% trans "Version" %}
{% plugin_list as pl_list %}
{% if pl_list %}
{% trans 'Active plugins' %}
{% for plugin_key, plugin in pl_list.items %}
{% include "InvenTree/settings/plugin_details.html" with plugin=plugin plugin_key=plugin_key %}
{% endfor %}
{% endif %}
{% inactive_plugin_list as in_pl_list %}
{% if in_pl_list %}
{% trans 'Inactive plugins' %}
{% for plugin_key, plugin in in_pl_list.items %}
{% include "InvenTree/settings/plugin_details.html" with plugin=plugin plugin_key=plugin_key %}
{% endfor %}
{% endif %}
{% plugin_errors as pl_errors %}
{% if pl_errors %}
{% trans "Plugin Error Stack" %}
{% include "spacer.html" %}
{% trans "Stage" %}
{% trans "Name" %}
{% trans "Message" %}
{% for stage, errors in pl_errors.items %}
{% for error_detail in errors %}
{% for name, message in error_detail.items %}