Re: Admin Center is not displaying

2013-08-05 Thread Cole Calhoun
For some reason, my tutorial would switch from the 1.5 version to the 1.7 version without me noticing. Once I did notice, I realized that I had not yet completed the third step. Everything seems to be in working order now. Thank you so much for the help! On Monday, August 5, 2013 4:16:35 AM

Re: Admin Center is not displaying

2013-08-05 Thread Keith Edmiston
I experienced similar troubles just last week. The remedy for me was to delete all cookies and cache in my Firefox (on a PC). Then it worked again. Hope that helps...Keith On Saturday, August 3, 2013 10:57:33 PM UTC-5, Cole Calhoun wrote: > > I am running Python 2.7.4 and Django 1.5.1 on a

Re: Admin Center is not displaying

2013-08-05 Thread Phil
There are 3 steps in the documentation. You seem to have done the first 2, but what about your mysite/urls.py file? Did you uncomment those lines: # Uncomment the next two lines to enable the admin:*from django.contrib import admin**admin.autodiscover()* Regards, Phil On Sunday, August 4,

Re: Admin Center is not displaying

2013-08-05 Thread Cole Calhoun
Thank you for the support. However, I tried that already and still nothing showed up. Not sure what I'm missing. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: Admin Center is not displaying

2013-08-05 Thread Cole Calhoun
Thank you for the support. However, I tried that already and still nothing showed up. Not sure what I'm missing. On Sunday, August 4, 2013 12:54:07 PM UTC-7, gilberto dos santos alves wrote: > > see your mysite/settings.py for 'django.contrib.admin' (you must clear # > comment) now in 1.6x

Re: Admin Center is not displaying

2013-08-04 Thread gilberto dos santos alves
see your mysite/settings.py for 'django.contrib.admin' (you must clear # comment) now in 1.6x django.contrib.admin comes active. until 1.5.x this option is with comment #. if doubt use ./manage.py shell import sys for oque in sys.path: print oque see all your entries for python and django

Admin Center is not displaying

2013-08-03 Thread Cole Calhoun
I am running Python 2.7.4 and Django 1.5.1 on a Mac. I completed the first part of the "Writing your first Django app." tutorial (https://docs.djangoproject.com/en/1.5/intro/tutorial01/) and everything went as the tutorial explained. Once I got to the second part of the tutorial, it asked me