Hi, I have this form:
class PostForm(forms.Form): post = forms.CharField(label=None, help_text=None, max_length=160, widget=forms.Textarea(attrs={'rows':3, "cols":70,})) And the constructor looks like this: PostForm(auto_id=False) according to folks on the net, this should produce a form with no labeling whatsoever, but still i get this: <p>Post: <textarea rows="3" cols="70" name="post"></textarea></p> how do I get rid of the "Post: "? -- 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...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.