Re: Problem creating choices in Tutorial Part 1

2007-07-25 Thread Dynomite2910
Doh! As I stated and figured it would be... a total noob mistake. Thanks Nathan - I will look even harder before posting next time. D. On Jul 25, 12:37 pm, Nathan Ostgard <[EMAIL PROTECTED]> wrote: > As the error says, you're using self.question in the Choice model -- > it should be self.choic

Re: Problem creating choices in Tutorial Part 1

2007-07-25 Thread Nathan Ostgard
As the error says, you're using self.question in the Choice model -- it should be self.choice. e.g., change this: class Choice(models.Model): # ... def __unicode__(self): return self.question to this: class Choice(models.Model): # ... def __unicode__(self): return self.choice

Problem creating choices in Tutorial Part 1

2007-07-25 Thread Dynomite2910
Hello, Apologies for a noob question/problem. I have searched the forum and can't find anyone having the same issue. I am working through the tutorial following everything exactly as written. (http:// www.djangoproject.com/documentation/tutorial01/) Everything works as expected until I get to th