On Wed, 2006-09-20 at 10:19 +0200, Benedict Verheyen wrote:
> Hi,
> 
> i started a project and since i don't have any 'apps' for that project
> i decided to
> add the models.py to the main project directory so next to
> settings.py.
> I added the main project directory to the INSTALLED_APPS in
> settings.py 
> and python manage.py syncdb ran ok.
> The tables are made and via python manage.py shell i could add a few
> records.
> However when i go to the admin page, none of the models show up.
> Everything is correctly setup for the admin page: 
> * i added 'django.contrib.admin' to INSTALLED_APPS
> * i ran python manage.py syncdb
> * edited urls.py and uncommented the entry for admin
> 
> Any ideas?
> Also, is it recommended to work with an app even if you don't
> immediately need one? 

There could be a number of places this is going wrong, because Django
does a few dynamic imports. I guess you could try and chase down where
the problem is occurring, but it would take some time and probably isn't
really worth the effort. Make an application directory and put models.py
in there.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to