{% load i18n lucide %} {% comment %} The management nav, in one place: the sidebar renders it on a wide screen and the collapsed menu renders it on a narrow one. Admin-only sections are hidden here for plain staff -- the views are gated regardless (ClubAdminRequiredMixin), this is just so the nav never shows a link they can't follow. `nav` (management.context_processors.active_nav_section) is the current page's section, derived from the resolved URL name -- `menu-active` is daisyUI's active state, same convention as controlpanel/templates/controlpanel/_nav_items.html. {% endcomment %}
  • {% lucide "layout-dashboard" size=16 %} {% trans "Dashboard" %}
  • {% lucide "users" size=16 %} {% trans "Members" %}
  • {% if is_club_admin %}
  • {% lucide "wallet" size=16 %} {% trans "Memberships" %}
  • {% lucide "shield-check" size=16 %} {% trans "Roles" %}
  • {% endif %}
  • {% lucide "shirt" size=16 %} {% trans "Teams" %}
  • {% lucide "tags" size=16 %} {% trans "Positions" %}
  • {% lucide "newspaper" size=16 %} {% trans "News" %}
  • {% lucide "calendar" size=16 %} {% trans "Events" %}
  • {% if has_management_position %}
  • {% lucide "map-pin" size=16 %} {% trans "Locations" %}
  • {% lucide "swords" size=16 %} {% trans "Opponents" %}
  • {% endif %} {% if is_club_admin %}
  • {% lucide "handshake" size=16 %} {% trans "Sponsors" %}
  • {% endif %} {% if is_club_admin and shop_enabled %}
  • {% lucide "package" size=16 %} {% trans "Products" %}
  • {% lucide "shopping-cart" size=16 %} {% trans "Orders" %}
  • {% lucide "percent" size=16 %} {% trans "Discounts" %}
  • {% lucide "receipt" size=16 %} {% trans "Invoices" %}
  • {% endif %} {% if is_club_admin and forms_enabled %}
  • {% lucide "clipboard-list" size=16 %} {% trans "Forms" %}
  • {% endif %}