How Do I Remove Text From Generated Django Form? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:23:15Zhttp://stackoverflow.com/feeds/question/1080828http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080828/how-do-i-remove-text-from-generated-django-form1How Do I Remove Text From Generated Django Form?AlbertoPL2009-07-03T21:06:16Z2009-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><p>Text: <textarea rows="10" cols="40" name="text"></textarea></p>
</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#10808530Answer by GrzegorzOledzki for How Do I Remove Text From Generated Django Form?GrzegorzOledzki2009-07-03T21:13:52Z2009-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#10808820Answer by lemonad for How Do I Remove Text From Generated Django Form?lemonad2009-07-03T21:21:08Z2009-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#10811503Answer by AlbertoPL for How Do I Remove Text From Generated Django Form?AlbertoPL2009-07-03T23:49:54Z2009-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>