{% extends "admin/base.html" %}
{% load admin_tools_menu_tags utils static %}
{% block title %}{% if header_title %}{{ header_title }}{% else %}{{ title }}{% endif %} | {{ SITE_VERBOSE_NAME }} {% endblock %}
{% block blockbots %}
{{ block.super }}
{% comment %}This has to load after admin/js/collapse.js{% endcomment %}
{% endblock %}
{% block extrastyle %}
{{ block.super }}
{% if user.is_active and user.is_staff %}
{% if not is_popup %}
{% admin_tools_render_menu_css %}
{% endif %}
{% endif %}
{% endblock %}
{% block branding %}
{{ SITE_VERBOSE_NAME }} {% version %}
{% endblock %}
{% block nav-global %}
{% if user.is_active and user.is_staff %}
{% if not is_popup %}
{% admin_tools_render_menu %}
{% endif %}
{% endif %}
{% endblock %}