{% use_elements %} {%- if title|default('') -%} {{ title }} - {{ app_name }} Admin {%- else -%} {{ app_name }} Admin {%- endif -%} {% tailwind_css %} {% htmx_js %} {% block header_scripts %}{% endblock %}
{% include "admin/_header.html" %}
{% block header %} {# Breadcrumbs - small, above title #} {% if parent_view_classes or view_class.nav_section %} {% endif %} {# Title row with actions #}
{% block image %} {% if image %} {{ image.alt }} {% endif %} {% endblock %}

{% block title %}{{ title }}{% endblock %}

{# Desktop actions: links as buttons, extra_links in dropdown #} {% macro link_dropdown_items(items) %}
{% for link, url in items %} {{ link }} {% endfor %}
{% endmacro %} {# Mobile actions dropdown #} {% if links or extra_links %}
{% endif %}
{# Description - shown below title #} {% if description %}

{{ description }}

{% endif %} {% endblock %}
{% if cards %}
{% for card in cards %} {{ render_card(card)|safe }} {% endfor %}
{% endif %}
{% block content %}{% endblock %}
{% include "toolbar/inject.html" ignore missing %}