{% extends "admin/base.html" %}
{% load mezzanine_tags i18n staticfiles %}
{% block title %}{{ title }} | Mezzanine{% endblock %}
{% block extrahead %}
{% if not settings.GRAPPELLI_INSTALLED %}
{% endif %}
{% 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 %}
{% if settings.GRAPPELLI_INSTALLED %}
{% endif %}
{% endif %}
{% endif %}
{% endblock %}