Re: Extending Django admin delete confirmation page

2020-04-01 Thread Gagan Deep
That doesn't work either. 😅 On Tue, Mar 31, 2020 at 12:19 PM Klaus Laube wrote: > Hi, Gagan. > > Try removing the "admin:" from your instruction: `{% extends > "admin/delete_confirmation.html" %}` > > Here is the template with a possible blocks that you might overwrite: > https://github.com/djan

Re: Extending Django admin delete confirmation page

2020-03-30 Thread Klaus Laube
Hi, Gagan. Try removing the "admin:" from your instruction: `{% extends "admin/delete_confirmation.html" %}` Here is the template with a possible blocks that you might overwrite: https://github.com/django/django/blob/master/django/contrib/admin/templates/admin/delete_confirmation.html Cheers.

Extending Django admin delete confirmation page

2020-03-30 Thread Gagan Deep
Greetings, I am wondering if it is possible to extend Django Admin's delete confirmation page. I tried the following but the received template does not exist error page. > % extends 'admin:admin/delete_confirmation.html' %} > I refer to this website which stated it is possible to do so https:/