Re: Problems with turning on the Admin

2013-11-11 Thread Keith Edmiston
UPDATE: this problem was caused by latent .pyc files on my localhost machine. Deletion of those removed this issue. Thanks for the help. Keith On Saturday, November 9, 2013, Vincenzo Prignano wrote: > Sorry but I still can’t see the problem here. You are by the way using an > old Django version

Re: Problems with turning on the Admin

2013-11-09 Thread Vincenzo Prignano
Sorry but I still can’t see the problem here. You are by the way using an old Django version and an old Python version. That’s the only thing I can think about right now. -- Vincenzo Prignano Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Saturday, November 9, 2013 at 6:53 PM, Kei

Re: Problems with turning on the Admin

2013-11-09 Thread Keith Edmiston
Bumping this up once more just in case someone may have any thoughts...still a problem that has me stumped. Thanks, in advance, for ideas. Keith On Friday, November 8, 2013, Keith Edmiston wrote: > bus/certs/urls.py: > > from django.conf.urls import patterns, url, include > from django.conf impo

Re: Problems with turning on the Admin

2013-11-08 Thread Keith Edmiston
bus/certs/urls.py: from django.conf.urls import patterns, url, include from django.conf import settings from bus.certs.views import index from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', (r'^apps/bus/certs/$', index), (

Re: Problems with turning on the Admin

2013-11-08 Thread Vincenzo Prignano
Can you post the line in urls.py that is calling the view function? On Friday, November 8, 2013 6:48:28 PM UTC+1, Keith Edmiston wrote: > > Sorry...I was trying to be careful of not putting so much info in the > email that it became too much. > > My project structure is (in part): > --bus/certs >

Re: Problems with turning on the Admin

2013-11-08 Thread Keith Edmiston
Sorry...I was trying to be careful of not putting so much info in the email that it became too much. My project structure is (in part): --bus/certs |_ application |_ __init__ |_ models.py --> empty, using common/models.py & bus_models/models.py |_ urls.py |_ views.py

Re: Problems with turning on the Admin

2013-11-08 Thread Vincenzo Prignano
'bus.certs.listing' is this entry in your installed apps referring to the "Listing" models perhaps? We can't really help you with much more info btw. On Friday, November 8, 2013 4:55:04 PM UTC+1, Keith Edmiston wrote: > > Hi, > > I am building a new site in Django 1.4 and I'm using the South migr

Problems with turning on the Admin

2013-11-08 Thread Keith Edmiston
Hi, I am building a new site in Django 1.4 and I'm using the South migration tool to keep my dev MySQL database in sync with changes made to my models. It should be said that I use one MySQL database account to serve various Django projects/apps (confusing, yes). It all seems to be working fine un