syo
unread,Jan 16, 2009, 6:21:22 AM1/16/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
hi , i'm now reading a Django tutorail naming:
"Writing your first Django app, part 1"
In the "Activating models" part , it asks me to:
1. add 'mysite.polls' into INSTALLED_APPS,
2.then type "python manage.py sql polls".
I tried , but coundn't get the thing works.
with a second try ,
instead of adding 'mysite.polls' , I added 'polls' into
INSTALLED_APPS,
and then , it works and i got the expect result.
my project layout like:
mysite
-- settings.py
-- manage.py
-- polls
-- models.py
-- views.py
here , my question is : need realIy add "mysite" before the "polls"?
Thanks in advance!
syo