{% load static %}
{# ── Left: hamburger + page title ─────────────────────────── #}
{% block page_title_nav %}IILMP{% endblock %}
{# ── Right: notifications + user menu ─────────────────────── #}
{# Notifications bell #} {% include "notifications/partials/badge.html" with unread_count=0 %} {# User menu #}
{# ── User info header ──────────────────────────── #}
{% include "components/user_avatar.html" with user=request.user size="ml" variant="on_light" only %}

{{ request.user.get_full_name|default:request.user.email }}

{% if request.user.role %}{{ request.user.role|title }}{% elif request.user.is_superuser %}Superuser{% elif request.user.is_staff %}Staff{% else %}User{% endif %}

{# ── Actions ────────────────────────────────────── #}
Profile {% if user.is_staff %} Admin panel {% endif %}