ISO-27001-Risk-Management/templates/risks/_extra_nav.html
Kevin Heyer ac3c6db486 Add navigation registry and template integration for modular apps
- Introduced risks/navigation_registry.py for central navigation registry
    - Added risks/templatetags/navigation.py to render registry entries
    - Created template fragment risks/templates/risks/_extra_nav.html
    - Updated README.md with integration instructions
    - Prepared risks/base.html to include extra navigation automatically
2025-09-17 09:36:11 +02:00

8 lines
No EOL
269 B
HTML

{% for item in extra_items %}
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">{{ item.label }}</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="{{ item.url }}">{{ item.label }} Übersicht</a>
</div>
</div>
{% endfor %}