Files
fet2020/fet2020/templates/admin/base.html
2024-02-17 10:26:00 +00:00

26 lines
854 B
HTML

{% extends "admin/base.html" %}
{% load i18n admin_urls %}
{% load static %}
{% block extrahead %}
<link rel="shortcut icon" type="image/png" href="{% static 'img/fet_logo_white.png' %}"/>
{% endblock %}
{% block usertools %}
{% if has_permission %}
<div id="user-tools" style="font-size:13px;">
{% block welcome-msg %}
{% translate 'Welcome,' %}
<strong>{% firstof user.get_short_name user.get_username %}</strong>.
{% endblock %}
{% block userlinks %}
{% if site_url %}
<a class="button" href="{{ site_url }}">Zurück zur FET Homepage</a>
{% endif %}
<a class="button" href="{% url 'authentications:password_change' %}">Passwort ändern</a>
<a class="button" href="{% url 'admin:logout' %}">{% translate 'Log out' %}</a>
{% endblock %}
</div>
{% endif %}
{% endblock %}