{% extends "admin/base.html" %}
{% load i18n admin_static %}
{% block extrastyle %}
{% endblock %}
{% block extrahead %}
{% include "medicine_utils/add_js.html" %}
{{ block.super }}
{% endblock %}
{% block nav-global %}{% endblock %}
{% block userlinks %}
{% if request.user.is_superuser %}
{% if user.is_active and user.is_staff %}
{% url 'django-admindocs-docroot' as docsroot %}
{% if docsroot %}
{% trans 'Documentation' %} /
{% endif %}
Настройки /
{% endif %}
{% endif %}
{% if site_url %}
Открыть сайт /
{% endif %}
{% if user.has_usable_password %}
{% trans 'Change password' %} /
{% endif %}
{% trans 'Log out' %}
{% endblock %}