I've just move a project onto newforms-admin, and the change has gone
fine. Thanks to all who've worked on this.
The project has a public site and some customised admin for office
staff, so I'm thinking about having 2 AdminSites, one for office staff
and a basic one for sysadmin.
The /docs/admin.txt example gives this:
from myproject.admin import basic_site, advanced_site
urlpatterns = patterns('',
('^basic-admin/(.*)', basic_site.root),
('^advanced-admin/(.*)', advanced_site.root),
)
2 questions:
- how can you have different templates for each AdminSite
- if you register models to basic-admin, they won't show automatically
in advanced-admin and vice-versa
I'm missing something I think- or AdminSite isn't the way to do this.
Derek
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---