{% extends "admin/base.html" %} {% comment %} This file contains a handful of unrelated admin customizations that mostly get applied globally to different parts of the admin. In the ``extrahead`` block: * CSS for the login form * Javascript for the login form to add the ``interface`` radio buttons * Global CSS fixes (when logged in) * Javascript for injecting Mezzanine's menu into the top of every page * Javascript for fixing inlines to work with Mezzanine's dynamic inlines In the ``footer`` block: * HTML for the ``interface`` radio buttons in the login form * HTML for Mezzanine's menu {% endcomment %} {% load mezzanine_tags i18n %} {% block title %}{{ title }} | Mezzanine{% endblock %} {% block branding %}

Mezzanine

{% endblock %} {% block nav-global %}{% endblock %} {% block extrahead %} {% if not request.user.is_authenticated %} {% endif %} {% if request.user.is_authenticated and not is_popup and not request.GET.pop %} {% endif %} {% endblock %} {% block footer %}{{ block.super }} {% if not request.user.is_authenticated %} {% endif %} {% if request.user.is_authenticated %} {% admin_dropdown_menu %} {% endif %} {% endblock %}