{% extends 'admin/base.html' %}
{% load i18n %}
{% block extrastyle %}
{% endblock extrastyle %}
{% block userlinks %}
{% if user.is_superuser or user.has_setting_perm %}
{% url 'admin:settings' as settings_root %}
{% if settings_root %}
{% translate 'Settings' %} /
{% endif %}
{% endif %}
{{ block.super }}
{% endblock %}