2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00
Files
InvenTree/InvenTree/templates/plugin/panel_content.html
Matthias Mair 74726f0fda fix endline
2022-05-20 13:35:07 +02:00

20 lines
599 B
HTML

{% if plugin_panels %}
<!-- Custom panel items, loaded via plugins -->
{% for panel in plugin_panels %}
<div class='panel panel-hidden' id='panel-{{ panel.key }}'>
<div class='panel-heading'>
<div class='d-flex flex-wrap'>
<h4>{{ panel.title }}</h4>
{% include "spacer.html" %}
<div class='btn-group' role='group'>
<!-- TODO: Implement custom action buttons for plugin panels -->
</div>
</div>
</div>
<div class='panel-content'>
{{ panel.content | safe }}
</div>
</div>
{% endfor %}
{% endif %}