From 2c80bb3c883483dc25d835c80e8176bbe5f11987 Mon Sep 17 00:00:00 2001 From: Patrick Mayr Date: Sat, 17 Feb 2024 10:26:00 +0000 Subject: [PATCH] move shortcut icon --- fet2020/templates/admin/base.html | 5 +++++ fet2020/templates/admin/base_site.html | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fet2020/templates/admin/base.html b/fet2020/templates/admin/base.html index cec2c34c..d7df2347 100644 --- a/fet2020/templates/admin/base.html +++ b/fet2020/templates/admin/base.html @@ -1,5 +1,10 @@ {% extends "admin/base.html" %} {% load i18n admin_urls %} +{% load static %} + +{% block extrahead %} + +{% endblock %} {% block usertools %} {% if has_permission %} diff --git a/fet2020/templates/admin/base_site.html b/fet2020/templates/admin/base_site.html index 36e8c15f..c7b85356 100644 --- a/fet2020/templates/admin/base_site.html +++ b/fet2020/templates/admin/base_site.html @@ -1,8 +1,3 @@ {% extends "admin/base_site.html" %} -{% load static %} {% block title %}{{ site_title }}: {{ title }} {% endblock %} - -{% block extrahead %} - -{% endblock %}