Re: AdminSite objects

2009-11-18 Thread bjudson
Oh, I see it's much easier to solve this problem by overriding the admin index view by putting something like this in the main URLconf: (r'^admin/$', 'admin_views.dashboard'), and then putting my dashboard view (and other custom views) into an admin_views.py file in the site root. As described he

AdminSite objects

2009-11-18 Thread bjudson
minSite instance as described here: http://docs.djangoproject.com/en/dev/ref/contrib/admin/#adminsite-objects However, this is description is a bit vague... am I supposed to create a new app folder for the AdminSite, with views.py, urls.py, etc? I can't find any clear descriptions of this process