Add favicon to admin

This commit is contained in:
Gabriel Augendre 2020-12-27 15:27:23 +01:00
parent 14a7b31026
commit 868df05f2f
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -0,0 +1,13 @@
{% extends "admin/base.html" %}
{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
{% endblock %}
{% block extrahead %}
{% include "articles/snippets/favicon.html" %}
{% endblock %}
{% block nav-global %}{% endblock %}