{% extends "admin/base.html" %}
{% load mezzanine_tags i18n static static %}
{% block title %}{{ title }} | Mezzanine{% endblock %}
{% block extrahead %}
{% if user.is_staff %}{% endif %}
{{ media }}
{% endblock extrahead %}
{% block stylesheets %}
{{ block.super }}
{% endblock %}
{% block rtl_styles %}
{{ block.super }}
{% endblock %}
{% block before_content %}
{% if user.is_staff and not is_popup and not request.GET.pop %}
{% admin_dropdown_menu %}
{% endif %}
{% endblock %}
{% block footer %}
{% if form.this_is_the_login_form %}
{% else %}
{% if user.is_staff %}
{% if not is_popup and not request.GET.pop %}
{% endif %}
{% endif %}
{% endif %}
{% endblock footer %}