django-fobi/examples/simple/templates/admin/base_site.html
Artur Barseghyan f315c9bcc6 initial
2014-10-11 05:54:24 +02:00

30 lines
829 B
HTML

{% extends "admin/base.html" %}
{% load i18n admin_static admin_tools_menu_tags %}
{% block title %}{{ title }} | {% trans 'Django site admin' %}{% endblock %}
{% block extrahead %}
{{ block.super }}
<link rel="stylesheet" type="text/css" href="{% static 'css/admin_custom.css' %}" />
{% endblock extrahead %}
{% 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 %}
<h1 id="site-name">{% trans 'Django administration' %}</h1>
{% endblock %}
{% block nav-global %}
{% if user.is_active and user.is_staff %}
{% if not is_popup %}
{% admin_tools_render_menu %}
{% endif %}
{% endif %}
{% endblock %}