Re: URGENT - Please help. Boolean field shows up as [null]

2010-04-15 Thread derek
Perhaps you can say here what you fixed so others can learn. On Apr 14, 7:25 pm, pedjk wrote: > Problem solved. I just had to fix the code in mysql. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us

Re: URGENT - Please help. Boolean field shows up as [null]

2010-04-14 Thread pedjk
Problem solved. I just had to fix the code in mysql. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@goog

URGENT - Please help. Boolean field shows up as [null]

2010-04-14 Thread pedjk
I created a Boolean field in django, but it shows up as "[null]" on my webpage. I have three other Boolean fields in the same page that work fine. What's causing this. My code in forms is: CreateLead = forms.BooleanField(required=False) in models is: CreateLead = models.BooleanField() Tha