Re: New to Django; walking through djangoproject tutorial; can't get poll to work

2012-12-21 Thread Deron
Sorry for my delayed response. I didn't receive a notification that you had replied for some reason. Anyway, you're correct. That's exactly what the issue was and now I feel dumb. Thank you very much! On Wednesday, December 19, 2012 12:39:41 AM UTC-5, Jeff Tchang wrote: > > My first guess is th

Re: New to Django; walking through djangoproject tutorial; can't get poll to work

2012-12-18 Thread Jeff Tchang
My first guess is that {% for choice in poll.choice_set.all %} is empty. So you have no choices attached to the poll. You can verify this by looking at the generated HTML source and seeing if you have any radio buttons at all. Since you said you didn't that is my guess. I didn't go back and look

New to Django; walking through djangoproject tutorial; can't get poll to work

2012-12-18 Thread Deron
Hi, First post here. I'm extremely new to Django and I have been fumbling my way through the DjangoProject "poll" app tutorial for a couple weeks now. I understand a lot of what's going on, but a lot of things are completely lost on me as well. That said, I'm to the point of actually using the