{% extends "panel.html" %} {% load i18n %} {% load inventree_extras %} {% load plugin_extras %} {% block label %}plugin-{{plugin_key}}{% endblock %} {% block heading %} {% blocktrans with name=plugin.human_name %}Plugin details for {{name}}{% endblocktrans %} {% endblock %} {% block content %}
{% trans "Name" %} | {{ plugin.human_name }}{% include "clip.html" %} | |
{% trans "Author" %} | {{ plugin.author }}{% include "clip.html" %} | |
{% trans "Description" %} | {{ plugin.description }}{% include "clip.html" %} | |
{% trans "Date" %} | {{ plugin.pub_date }}{% include "clip.html" %} | |
{% trans "Version" %} | {% if plugin.version %} {{ plugin.version }}{% include "clip.html" %} {% else %} {% trans 'no version information supplied' %} {% endif %} | |
{% trans "Website" %} | {{ plugin.website }}{% include "clip.html" %} | |
{% trans "License" %} | {{ plugin.license }}{% include "clip.html" %} |
{% trans 'The code information is pulled from the latest git commit for this plugin. It might not reflect official version numbers or information but the actual code running.' %}
{% endif %}{% trans "Installation method" %} | {% if plugin.is_package %} {% trans "This plugin was installed as a package" %} {% else %} {% trans "This plugin was found in a local InvenTree path" %} {% endif %} | |
{% trans "Installation path" %} | {{ plugin.package_path }} | |
{% trans "Commit Author" %} | {{ plugin.package.author }} - {{ plugin.package.mail }}{% include "clip.html" %} | |
{% trans "Commit Date" %} | {{ plugin.package.date }}{% include "clip.html" %} | |
{% trans "Commit Hash" %} | {{ plugin.package.hash }}{% include "clip.html" %} | |
{% trans "Commit Message" %} | {{ plugin.package.message }}{% include "clip.html" %} | |
{% trans "Sign Status" %} | {% if plugin.package.verified %}{{ plugin.package.verified }}: {% endif%}{{ plugin.sign_state.msg }} | |
{% trans "Sign Key" %} | {{ plugin.package.key }}{% include "clip.html" %} |