{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% load i18n %} {% comment %} note that without the following check, this admin toolbar shows up in rendered Koriander pages {% endcomment %} {% if request.user.is_staff %}

{% trans 'Index' %} | {% if page %} {% blocktrans with address=page.get_absolute_url %} You are on {{ address }} {% endblocktrans %} ({% if page.is_branch %}{% trans 'Branch' %}{% else %}{% trans 'Leaf' %}{% endif %}, {% if page.is_draft %}{% trans 'draft' %}{% else %}{% trans 'published' %}{% endif %}, {% if page.is_hidden %}{% trans 'unlisted' %}{% else %}{% trans 'listed' %}{% endif %}) {% if page.is_branch %} | {% trans 'Add child' %} {% endif %} | {% trans 'Edit this page' %} | {% trans 'Show drafts' %} | {% trans 'Customize template' %} {% else %} {% trans 'Go to admin' %} {% endif %}


{% endif %}