{% extends "panel.html" %} {% load i18n %} {% load inventree_extras %} {% load plugin_extras %} {% block label %}plugin-{{plugin_key}}{% endblock %} {% block heading %} {% blocktrans with name=plugin.plugin_name %}Plugin details for {{name}}{% endblocktrans %} {% endblock %} {% block content %}
{% trans "Plugin Version" %}
{% trans "Commit Hash" %}{{ plugin.commit.hash }}{% include "clip.html" %}
{% trans "Commit Date" %}{{ plugin.commit.date }}{% include "clip.html" %}
{% trans "Commit Author" %}{{ plugin.commit.author }} - {{ plugin.commit.mail }}{% include "clip.html" %}
{% trans "Commit Message" %}{{ plugin.commit.message }}{% include "clip.html" %}
{% trans "Commit Sign Status" %} {{ plugin.commit.verified }}: {{ plugin.sign_state.msg }}
{% trans "Commit Sign Key" %} {{ plugin.commit.key }}{% include "clip.html" %}

{% trans 'This information is pulled from the latest git commit for this plugin. It might not reflect official version numbers.' %}

{% mixin_enabled plugin 'settings' as settings %} {% if settings %}

{% trans "Settings" %}

{% plugin_settings plugin_key as plugin_settings %} {% include "InvenTree/settings/header.html" %} {% for setting in plugin_settings %} {% include "InvenTree/settings/setting.html" with key=setting%} {% endfor %}
{% endif %} {% mixin_enabled plugin 'urls' as urls %} {% if urls %}

{% trans "URLs" %}

{% define plugin.base_url as base %}

{% blocktrans %}The Base-URL for this plugin is {{ base }}.{% endblocktrans %}

{% for key, entry in plugin.urlpatterns.reverse_dict.items %}{% if key %} {% endif %}{% endfor %}
{% trans "Name" %} {% trans "URL" %}
{{key}} {{entry.1}} {% trans 'open in new tab' %}
{% endif %} {% endblock %}