Re: admin site not showing up?

2011-09-05 Thread mrstevegross
Figured it out: gotta run autodiscover(). --Steve -- 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 django-users+unsubscr...@google

admin site not showing up?

2011-09-05 Thread mrstevegross
I'm dutifully following the instructions at the django tutorial (https://docs.djangoproject.com/en/1.3/intro/tutorial02/). I have amended admin.py and urls.py as indicated and restarted the server; however, the admin website does NOT provide any interface to the polls app. Instead, it tells me: "Si

Re: How to run tests?

2011-08-31 Thread mrstevegross
> Try "manage.py test data". Django doesn't really like those > dot-separated namespace packages, sadly. Only the last part is used. Ah, that works. Interesting. I wasn't the one who originally picked the name. I'll look into changing it. Thanks, --Steve -- You received this message because you

How to run tests?

2011-08-30 Thread mrstevegross
Newbie question: I am trying to run tests for my one webapp "vip_mobile". The settings.py contains a line like this: INSTALLED_APPS = ( ... 'vip_mobile.data', ) It also contains a file data/tests.py with appropriate test content. When I run: manage.py test vip_mobile.data I get the er