{% extends "base.html" %} {% load static %} {% block html_class %}dashboard-shell{% endblock %} {% block body %}
{% include "components/topnav.html" %} {# ── Breadcrumb sub-bar ──────────────────────────────────── #} {# Sticky beneath the sticky topnav (h-14 = 3.5rem) so users keep #} {# their navigation context when scrolling long pages. #}
{% block breadcrumbs %}{% endblock %}
{# ── Main content ────────────────────────────────────────── #}
{% block messages %} {% include "layouts/partials/dashboard_messages.html" %} {% endblock %} {% if user.is_authenticated and user.pending_admin_review %}

Account under review

Your account is awaiting administrator approval. You can browse the platform freely, but submission actions on grants, businesses, and course content are disabled until approval.

{% endif %} {% block content %}{% endblock %}
{% if user.is_authenticated %}{% include "assistant/widget.html" %}{% endif %}
{% endblock %} {% block extra_js %} {{ block.super }} {% if user.is_authenticated %} {% endif %} {% endblock %}