From 555f1002c0cc34cdff7dd4c154086db110d07a11 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 3 Dec 2020 11:06:26 +0000 Subject: [PATCH] change font-size --- fet2020/templates/admin/base.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 fet2020/templates/admin/base.html diff --git a/fet2020/templates/admin/base.html b/fet2020/templates/admin/base.html new file mode 100644 index 00000000..9d29ab17 --- /dev/null +++ b/fet2020/templates/admin/base.html @@ -0,0 +1,28 @@ +{% extends "admin/base.html" %} +{% load i18n admin_urls %} + +{% block usertools %} +{% if has_permission %} +
+ {% block welcome-msg %} + {% translate 'Welcome,' %} + {% firstof user.get_short_name user.get_username %}. + {% endblock %} + {% block userlinks %} + {% if site_url %} + Zurück zur FET Homepage + {% endif %} + {% if user.is_active and user.is_staff %} + {% url 'django-admindocs-docroot' as docsroot %} + {% if docsroot %} + {% translate 'Documentation' %} + {% endif %} + {% endif %} + {% if user.has_usable_password %} + {% translate 'Change password' %} + {% endif %} + {% translate 'Log out' %} + {% endblock %} +
+{% endif %} +{% endblock %}