mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
{% extends "admin/base_site.html" %}
|
|
{% load static i18n %}
|
|
|
|
{% block theme %}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'material/admin/css/base_site-green.min.css' %}">
|
|
<link rel="stylesheet" type="text/css" href="{% static 'material/admin/css/base_site-theme.min.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block userlinks %}
|
|
{% block welcome-msg %}{% endblock %}
|
|
{% if site_url %}
|
|
<a href="{{ site_url }}">{% trans 'Mapa' %}</a>
|
|
{% endif %}
|
|
{% if user.is_active and user.is_staff %}
|
|
{% url 'django-admindocs-docroot' as docsroot %}
|
|
{% if docsroot %}
|
|
<a href="{{ docsroot }}">{% trans 'Documentation' %}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if user.has_usable_password %}
|
|
<a href="{% url 'admin:password_change' %}">
|
|
{% trans 'Change password' %}
|
|
</a>
|
|
{% endif %}
|
|
<a href="{% url 'admin:logout' %}">
|
|
{% trans 'Log out' %}
|
|
<i class="material-icons" aria-hidden="true">exit_to_app</i>
|
|
</a>
|
|
{% endblock %}
|