3👍
✅
Yes, the behavior is correct because not every template is getting override using this method per app or model, please read this.
allowed templates are :
- app_index.html
- change_form.html
- change_list.html
- delete_confirmation.html
- object_history.html
- popup_response.html
So what I had done is override all these per app and model or added in admin.py class change_form_template = 'admin/appname/customtemplate.html'
this will give you full control over templates. You can / need also to change all inner templates using inner includes.
Source:stackexchange.com