How Do I Remove Text From Generated Django Form? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:23:15Z http://stackoverflow.com/feeds/question/1080828 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080828/how-do-i-remove-text-from-generated-django-form 1 How Do I Remove Text From Generated Django Form? AlbertoPL 2009-07-03T21:06:16Z 2009-07-03T23:49:54Z <p>So earlier I asked a question about removing the label that Django forms have by default. That worked out great, and I removed the label. However, the text that is generated by the form is still there! I would very much like to remove the text. Here is what I mean:</p> <pre><code>&lt;p&gt;Text: &lt;textarea rows="10" cols="40" name="text"&gt;&lt;/textarea&gt;&lt;/p&gt; </code></pre> <p>I would like to remove the Text: part of this, as I do not want it. Again, it is generated with the form I create via:</p> <pre><code>{{ form.as_p }} </code></pre> <p>Here is the model I use for my form:</p> <pre><code>class CommentForm(forms.Form): comment = forms.CharField(widget=forms.Textarea()) </code></pre> <p>EDIT: So far, I've looked at all of the documentation about the label tag and what stuff Forms generate. Apparently, this is possible to remove, it just does not tell me how. Also, I can remove the colon by adding:</p> <pre><code>label_suffix=None </code></pre> <p>I have now also tried label, label_tag, label_prefix, prefix, both in the form constructor and the charField constructor. Nothing.</p> <p>As a parameter in the constructor, but this is not enough.</p> <p>Anyone know how to fix this one?</p> <p>EDIT2: I have changed around how the form is done:</p> <pre><code>class CommentForm(forms.Form): comment = forms.Textarea() </code></pre> <p>It's only that now. This means the Textarea is the problem. What parameter can I pass in the textarea or to the form that will remove the aforementioned problem?</p> http://stackoverflow.com/questions/1080828/how-do-i-remove-text-from-generated-django-form/1080853#1080853 0 Answer by GrzegorzOledzki for How Do I Remove Text From Generated Django Form? GrzegorzOledzki 2009-07-03T21:13:52Z 2009-07-03T21:13:52Z <p>Have you tried:</p> <pre><code>class CommentForm(forms.Form): comment = forms.CharField(widget=forms.Textarea(), label=None) </code></pre> <p>?</p> http://stackoverflow.com/questions/1080828/how-do-i-remove-text-from-generated-django-form/1080882#1080882 0 Answer by lemonad for How Do I Remove Text From Generated Django Form? lemonad 2009-07-03T21:21:08Z 2009-07-03T21:21:08Z <p>Try:</p> <pre><code>class CommentForm(forms.Form): comment = forms.CharField(widget=forms.Textarea(), help_text="") </code></pre> http://stackoverflow.com/questions/1080828/how-do-i-remove-text-from-generated-django-form/1081150#1081150 3 Answer by AlbertoPL for How Do I Remove Text From Generated Django Form? AlbertoPL 2009-07-03T23:49:54Z 2009-07-03T23:49:54Z <p>The answer:</p> <pre><code>class CommentForm(forms.Form): comment = forms.CharField(widget=forms.Textarea(), label='') </code></pre> <p>Also, no auto_id in the constructor when creating the object, it should be left as:</p> <pre><code>comment = new CommentForm() </code></pre>