mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-05 14:58:50 +00:00
- No extra template code is required for any new page - All loaded in base.html or page_base.html - Oh, so clean!
6 lines
223 B
HTML
6 lines
223 B
HTML
{% if plugin_panels %}
|
|
<!-- Custom sidebar menu items, loaded via plugins -->
|
|
{% for panel in plugin_panels %}
|
|
{% include "sidebar_item.html" with label=panel.key text=panel.title icon=panel.icon %}
|
|
{% endfor %}
|
|
{% endif %} |