{% load i18n wagtailadmin_tags %} {% comment "text/markdown" %} Variables accepted by this template: - `classname` - if present, adds classname to the header class list. This will be the class/classes added to the header class list - `title` - Displayed as `h1` - `subtitle` - Within the `h1` tag but smaller - `description` - if present, displayed as a small text below the `h1` tag title - `search_url` - if present, display a search box. This is a URL route name (taking no parameters) to be used as the action for that search box - `query_parameters` - a query string (without the '?') to be placed after the search URL - `icon` - name of an icon to place against the title - `avatar` - if present, display an 'avatar' in place of icon. This is the URL to be used as the img src for avatar - `merged` - if true, add the classname 'merged' - `action_url` - if present, display an 'action' button. This is the URL to be used as the link URL for the button - `action_text` - text for the 'action' button - `action_icon` - icon for the 'action' button, default is 'icon-plus' - `extra_actions` - extra action buttons for the header. This is the HTML to be used for the extra buttons {% endcomment %}
{% block breadcrumb %}{% endblock %}

{% if icon %} {% icon classname="w-header__glyph" name=icon %} {% elif avatar %}
{% endif %} {{ title }}{% if subtitle %} {{ subtitle }}{% endif %}

{% if description %}
{{ description }}
{% endif %}
{% if search_url %} {% endif %}
{% block right_column %} {% if action_url %}
{% with action_icon|default:'plus' as action_icon_name %} {% icon name=action_icon_name wrapped=1 %}{{ action_text }} {% endwith %}
{% endif %} {% endblock %} {% if extra_actions %} {{ extra_actions }} {% endif %}
{% block extra_rows %}{% endblock %}