mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
show enabled functionality in plugin overview
This commit is contained in:
parent
733303fb66
commit
4c7d1e6658
@ -25,7 +25,14 @@
|
|||||||
{% plugin_list as pl_list %}
|
{% plugin_list as pl_list %}
|
||||||
{% for plugin_key, plugin in pl_list.items %}
|
{% for plugin_key, plugin in pl_list.items %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{plugin_key}} - {{ plugin.plugin_name}}</td>
|
<td>{{plugin_key}} - {{ plugin.plugin_name}}
|
||||||
|
{% if plugin.has_urls %}
|
||||||
|
<span class='badge'>{% trans 'Has urls' %}</span>
|
||||||
|
{% endif %}
|
||||||
|
{% if plugin.has_settings %}
|
||||||
|
<span class='badge'>{% trans 'Has settings' %}</span>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
Loading…
Reference in New Issue
Block a user