{% load i18n %} {% load navactive %} {% comment %} Top-navbar section tabs for the Discord-audit UI (left block of AA's ``header_nav_collapse_left``), replacing the former in-page tab strip. Active state is resolved by AA's ``navactive`` tag against the matched URL name, so a run-detail / finding-explain page keeps the "Runs" tab highlighted. Each entry is gated on the same view permission the destination view enforces. {% endcomment %} {% navactive request 'aa_discord_audit:run_list aa_discord_audit:run_detail aa_discord_audit:finding_explain' as navactive_runs %} {% if perms.aa_discord_audit.view_auditinvocation %} {% navactive request 'aa_discord_audit:invocation_list' as navactive_invocations %} {% endif %} {% if perms.aa_discord_audit.view_configchangelog %} {% navactive request 'aa_discord_audit:changelog_list' as navactive_changelog %} {% endif %}