MrDraw/src/octoprint/plugins/pluginmanager/templates/pluginmanager_about.jinja2
Gina Häußge e0b888b2d0 First throw at an "About" dialog
(cherry picked from commit f2c07e8)
2016-04-19 16:41:30 +02:00

18 lines
594 B
Django/Jinja

<h3>Plugin Licenses</h3>
<ul>
{% for plugin in plugin_pluginmanager_thirdparty %}
<li><a href="{{ plugin.url }}">{{ plugin.name }}</a>: {{ plugin.license }}</li>
{% endfor %}
</ul>
{% if templates.plugin_pluginmanager_about_thirdparty.order %}
<h3>Licenses of Plugin Dependencies</h3>
{% for key in templates.plugin_pluginmanager_about_thirdparty.order %}
{% set heading, config = templates.plugin_pluginmanager_about_thirdparty.entries[key] %}
<h4>{{ heading }}</h4>
{% include config.template ignore missing %}
{% endfor %}
{% endif %}