Re: Stupid noob question - admin link

2008-09-10 Thread Peter Bailey
Thanks everyone for your answers. Lots to learn here, but sure is fun! On Sep 10, 1:03 pm, AmanKow <[EMAIL PROTECTED]> wrote: > > Summary : You could simply copy the file base_site.html from admin > > templates to a directory called "admin" in your own template directory > > and add a link to

Re: Stupid noob question - admin link

2008-09-10 Thread AmanKow
> Summary : You could simply copy the file base_site.html from admin > templates to a directory called "admin" in your own template directory > and add a link to your own pages in {% block branding %} so you would > have access to the link on every admin page. Actually, there is an empty block

Re: Stupid noob question - admin link

2008-09-09 Thread Peter Bailey
Hi Daniel. I think this is way more complex than what I want. I have a main page (e..g. the default page in my web root). It is really just a title page with several links, one of which is to my admin site to add/update objects. I just want a straight link back on the admin page to the page in

Re: Stupid noob question - admin link

2008-09-09 Thread Denis Frère
On Sep 9, 8:16 pm, Peter Bailey <[EMAIL PROTECTED]> wrote: > Can anyone tell me a easy way to add a hyperlink from the > main admin page to somewhere else outside the admin app. You should probably read : http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates Summary

Re: Stupid noob question - admin link

2008-09-09 Thread Daniel Roseman
On Sep 9, 7:16 pm, Peter Bailey <[EMAIL PROTECTED]> wrote: > Hi all, starting to think there is so much stuff in django and python > that I will never learn it all. I am building a site that used the > admin piece for most of the CRUD and a few other pages for the rest of > my requirements. I

Stupid noob question - admin link

2008-09-09 Thread Peter Bailey
Hi all, starting to think there is so much stuff in django and python that I will never learn it all. I am building a site that used the admin piece for most of the CRUD and a few other pages for the rest of my requirements. I link to the admin from my main app page, and would like to be able to