Hey guys (and the odd girl),
I fail to get the admin panel working. I get to the main <admin> page, but from there every action results in a 404 page. For example after clicking the Users table in the <admin> page. ============================================================== Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/admin/auth/user/ Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order: 1. ^now/$ 2. ^admin/$ The current URL, /admin/auth/user/, didn't match any of these. ============================================================== As you can see, the url patterns for the admin page are indeed not there! They should have been included by my urls.py, which looks like this: =================================== from django.conf.urls.defaults import * from mysite.views import current_datetime urlpatterns = patterns('', (r'^now/$', 'views.current_datetime'), (r'^admin/', include('django.contrib.admin.urls')), ) =================================== Nothing strange here, right? The rest of django seems to work just fine. Settings.py is normal too, and includes: INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sites', 'django.contrib.sessions', 'mysite.myapp', 'django.contrib.admin', ) I had all this working on my system in a different setup: python 2.5 and django 0.95, with a different project. I do not know what i did wrong this time or what is wrong woth the setup. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---