Re: intercepting template admin/base_site.html

2008-06-25 Thread Alaa Salman
On Jun 25, 12:16 pm, OliverMarchand <[EMAIL PROTECTED]> wrote: > I want to customize my admin interface. > For that I know I can create my *own* template admin/base_site.html. > What I should really do is derive this from the *admins* > base_site.html template. > From my understanding, I am inter

Re: intercepting template admin/base_site.html

2008-06-25 Thread Julien
What you need to do is to create an 'admin' folder at the root of your own template directory. Then, copy the files you want to override from django/contrib/admin/templates/admin. And make the changes in those copied files. They will be used in place of the standard ones. On Jun 25, 7:16 pm, Oliv

intercepting template admin/base_site.html

2008-06-25 Thread OliverMarchand
Hello, I want to customize my admin interface. For that I know I can create my *own* template admin/base_site.html. What I should really do is derive this from the *admins* base_site.html template. >From my understanding, I am intercepting the base_site.html template. But how do I specify the ad