{% extends "admin/base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n staticfiles %} {% block title %}{{ title }} | {{ request.site.name }}{% endblock %} {% block branding %} {{ request.site.name }} {% endblock %} {% block usertools %} {% if user.is_authenticated %}
{% block welcome-msg %} {% trans 'Welcome,' %} {% firstof user.get_short_name user.get_username %}. {% endblock %} {% block userlinks %} {% if site_url %} {% trans 'View site' %} / {% endif %} {% if available_apps %} {# When in admin site, list all admin pages and documentation #} {% trans 'View admin' %} {% for app in available_apps %} {% for model in app.models %} {% if model.admin_url %} {{ model.name }} {% endif %} {% endfor %} {% endfor %} {% if user.is_active and user.is_superuser %} {% url 'django-admindocs-docroot' as docsroot %} {% if docsroot %} {% trans 'Documentation' %} {% endif %} {% endif %} / {% elif user.is_staff %} {# When not in admin site, but user is staff then add a link #} {% trans 'View admin' %} / {% endif %} {% trans 'Log out' %} {% endblock %}
{% endif %} {% endblock %} {% block extrastyle %} {# Favicon #} {% endblock %} {% block footer %} {% if not is_popup %} {% endif %} {% endblock %}