{% extends "panel.html" %} {% load i18n %} {% load inventree_extras %} {% load plugin_extras %} {% block label %}plugin{% endblock %} {% block heading %} {% trans "Plugin Settings" %} {% endblock %} {% block content %}
{% trans "Changing the settings below require you to immediatly restart InvenTree. Do not change this while under active usage." %}
{% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_URL" %} {% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_NAVIGATION" %} {% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_SETTING"%} {% include "InvenTree/settings/setting.html" with key="ENABLE_PLUGINS_APP"%}

{% trans "Plugin list" %}

{% plugin_list as pl_list %} {% for plugin_key, plugin in pl_list.items %} {% mixin_enabled plugin 'urls' as urls %} {% mixin_enabled plugin 'settings' as settings %} {% endfor %}
{% trans "Name" %} {% trans "Author" %} {% trans "Date" %} {% trans "Version" %}
{{ plugin.human_name }} - {{plugin_key}} {% define plugin.registered_mixins as mixin_list %} {% if mixin_list %} {% for mixin in mixin_list %} {% blocktrans with name=mixin.human_name %}has {{name}}{% endblocktrans %} {% endfor %} {% endif %} {% if plugin.website %} {% endif %} {{ plugin.author }} {{ plugin.pub_date }} {% if plugin.version %}{{ plugin.version }}{% endif %}
{% endblock %}