I need to set up a favicon for django admin interface.
It would be best to do it globally, without overriding templates for all apps.
What is the cleanest way
Extend admin/base.html in your template/admin/base_site.html template and add the favicon link in extrahead block
admin/base.html
template/admin/base_site.html
{% extends "admin/base.html" %} {% load staticfiles %} ... {% block extrahead %} {% endblock %}