{% extends "allianceauth/base-bs5.html" %}
{% load i18n %}
{% comment %}
Module base template for the Discord-audit UI.
Mirrors the Alliance Auth community-app convention (e.g. aasrp): the
section tabs live in the top navbar's left block and the page actions
(Launch Audit) live in its right block, rather than as an in-page tab
strip. Every list / detail template extends this base instead of
``allianceauth/base-bs5.html`` directly, so the top-menu navigation
reaches the operator without a per-template copy.
The brand is constant across the section; child templates still own
``page_title`` and ``content``. A page with top-right actions overrides
``header_nav_collapse_right`` (run_list does, to host the launch button).
{% endcomment %}
{% block header_nav_brand %}
{% translate "Discord Audit" %}
{% endblock %}
{% block header_nav_collapse_left %}
{% include "aa_discord_audit/_top_navigation.html" %}
{% endblock %}