Django: Can't override admin templates when they are already overridden?
To add some content to a Django admin view of a model, I want to override the change_form.html template. According to the documentation I would need to create a file change_form.html in a the folder /project-path/templates/admin/appname/modelname/ . Of course I need to make sure, that this path is also available in TEMPLATE_DIRS . Such a file could look like this: {% extends "admin/change_form.html" %} {% load i18n %} {% block after_field_sets %} SOME CONTENT {% endblock %} However, I make use of django-guardian to have object permissions. This Django app overrides change_form.html as well