{% load i18n wise_icons %} {% comment %} Renders wise_nav_sections (see wise_core/context_processors.py + WISE_NAV_SECTIONS in docs/getting-started.md). Each section: {"title": ..., "items": [...]}. Each item: {"label", "url_name", "url_kwargs" (optional), "icon" (lucide name), "match" (substring of request.resolver_match.url_name that marks it selected)}. {% endcomment %} {% if request.user.is_authenticated %} {% lucide "house" size=20 %} {% trans "Home" %} {% endif %} {% for section in wise_nav_sections %} {% endfor %} {% if request.user.is_authenticated %}
{{ request.user.first_name|default:request.user.username|slice:":1"|upper }}{{ request.user.last_name|slice:":1"|upper }}
{{ request.user.get_full_name|default:request.user.username }}
{% endif %}