From 868df05f2f88feb95d8f57a8351c6325922f2fc6 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sun, 27 Dec 2020 15:27:23 +0100 Subject: [PATCH] Add favicon to admin --- blog/templates/admin/base_site.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 blog/templates/admin/base_site.html diff --git a/blog/templates/admin/base_site.html b/blog/templates/admin/base_site.html new file mode 100644 index 0000000..5600d01 --- /dev/null +++ b/blog/templates/admin/base_site.html @@ -0,0 +1,13 @@ +{% extends "admin/base.html" %} + +{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} + +{% block branding %} +

{{ site_header|default:_('Django administration') }}

+{% endblock %} + +{% block extrahead %} + {% include "articles/snippets/favicon.html" %} +{% endblock %} + +{% block nav-global %}{% endblock %}