Why won't Django 1.0 admin application work? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:42:55Zhttp://stackoverflow.com/feeds/question/252531http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/252531/why-wont-django-1-0-admin-application-work4Why won't Django 1.0 admin application work?Josh Smeaton2008-10-31T03:35:19Z2008-10-31T04:50:27Z
<p>I've just started playing with Django and am loosely following the tutorial with my own set of basic requirements. The models I've sketched out so far are a lot more comprehensive than the tutorial, but they compile fine. Otherwise, everything should have been the same.</p>
<p>My problem is with the admin application. I can log into it, and view the editable models, but when I click on a model or any of the change/add buttons, I get a 404.</p>
<p>This is the exact error I get:</p>
<pre><code>Page not found (404)
Request Method: GET
Request URL: http://localhost:8000/admin/auth/user/add/
App u'', model u'auth', not found.
</code></pre>
<p>These are the relevant files and what is in them:</p>
<p>urls.py</p>
<pre><code>from django.conf.urls.defaults import *
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Example:
# (r'^daso/', include('daso.foo.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
#(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^admin(.*)', admin.site.root)
)
</code></pre>
<p>admin.py</p>
<pre><code>from daso.clients.models import Person, Client, Contact
from django.contrib import admin
admin.site.register(Person)
admin.site.register(Client)
admin.site.register(Contact)
</code></pre>
<p>models.py - I'll just show one model</p>
<pre><code>class Client(Person):
relationships = models.ManyToManyField("Contact", through="Relationship", null=True)
disabilities = models.ManyToManyField("Disability", related_name="disability", null=True)
medical_issues = models.ManyToManyField("MedicalIssue", related_name="medical_issue", null=True)
medicare_num = models.CharField(max_length=15, blank=True)
insurance = models.OneToOneField("Insurance", null=True, blank=True)
medications = models.ManyToManyField("Medication", through="Medication_Details", null=True)
def __unicode__(self):
client = u"[Client[id: ", self.id, " name: ", self.first_name, " ", self.last_name, "]"
return client
</code></pre>
<p>settings.py</p>
<pre><code>INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'daso.clients',
)
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
)
</code></pre>
<p>Those should be the relevant files/sections of files. If anyone has an idea about WHY I'm getting a 404, please enlighten me?</p>
<p>Note, when pasting in here, installed apps had the last 2 apps tabbed instead of spaced*4, and when reloading the admin page it worked for half a second then 404'd again. Strange. Ideas?</p>
http://stackoverflow.com/questions/252531/why-wont-django-1-0-admin-application-work/252621#25262111Answer by tghw for Why won't Django 1.0 admin application work?tghw2008-10-31T04:50:27Z2008-10-31T04:50:27Z<p>It's because you left out a <code>/</code> in <code>urls.py</code>. Change the admin line to the following:</p>
<pre><code>(r'^admin/(.*)', admin.site.root),
</code></pre>
<p>I checked this on my server and got the same error with your line from <code>urls.py</code>.</p>