{# ============================================================================ Admin Bar — displayed on public pages for logged-in admin/editor users. Shows: username, role badge, Edit/Builder links, Dashboard link. Designed to be minimal and respect the active theme. Include in public/base.html: {% if current_user is defined and current_user.is_authenticated %} {% include 'components/admin-bar.html' %} {% endif %} ============================================================================ #} {% if current_user is defined and current_user.is_authenticated %}
{% endif %}