Re: Django admin - how to change breadcrumbs 'Home' into 'Main menu'

2021-08-26 Thread Mike Dewhirst
On 27/08/2021 2:09 am, Nigel Copley wrote: although I think you'd have to override the breadcrumb block in each of the public facing admin templates, it doesn't look to be easily done and making a home setting it's probably overkill Overkill, underkill - looks like no other solution at the

Re: Django admin - how to change breadcrumbs 'Home' into 'Main menu'

2021-08-26 Thread Mike Dewhirst
On 27/08/2021 1:50 am, Cale Roco wrote: haven't tried it but you could potentially just override the "/admin/base.html" template in your templates directory That does change it but only at the top level admin:index page which shows all the apps Doesn't seem to be inherited by child pages.

Re: Django admin - how to change breadcrumbs 'Home' into 'Main menu'

2021-08-26 Thread Nigel Copley
although I think you'd have to override the breadcrumb block in each of the public facing admin templates, it doesn't look to be easily done and making a home setting it's probably overkill On Thursday, 26 August 2021 at 16:50:11 UTC+1 Nigel Copley wrote: > haven't tried it but you could

Re: Django admin - how to change breadcrumbs 'Home' into 'Main menu'

2021-08-26 Thread Cale Roco
haven't tried it but you could potentially just override the "/admin/base.html" template in your templates directory On Tuesday, 24 August 2021 at 02:02:14 UTC+1 Mike Dewhirst wrote: > We are using 'Home' in a different, more public, part of the site and > have to adjust that first item in the

Django admin - how to change breadcrumbs 'Home' into 'Main menu'

2021-08-23 Thread Mike Dewhirst
We are using 'Home' in a different, more public, part of the site and have to adjust that first item in the Admin breadcrumbs to 'Menu' or 'Main menu' in order to keep the UX masters happy. Some of the Admin is public facing. Looking at the source, I would have to override an awful lot of