Removing the Label From Django's TextArea Widget - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T19:33:20Zhttp://stackoverflow.com/feeds/question/1080650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080650/removing-the-label-from-djangos-textarea-widget0Removing the Label From Django's TextArea WidgetAlbertoPL2009-07-03T19:57:55Z2009-07-03T20:55:07Z
<p>How do I remove the label that comes attached to the TextArea I am trying to use with Django? I'm trying to find ANY information about this issue but I cannot seem to find anything relating to my problem. This is what I'm doing in my code:</p>
<pre><code>class CommentForm(forms.Form):
comment = forms.CharField(widget=forms.Textarea())
</code></pre>
<p>This is the HTML that it produces:</p>
<pre><code><label for="id_text">Text:</label>
<textarea id="id_text" rows="10" cols="40" name="text"></textarea>
</code></pre>
<p>That label is no good and I'd like a way to remove it. That code was produced via:</p>
<pre><code>{{ form.as_p }}
</code></pre>
<p>(I removed the paragraph tags because they are irrelevant)</p>
<p>EDIT: I added the class CommentForm part for further clarification.</p>
<p>Anyone have any suggestions?</p>
http://stackoverflow.com/questions/1080650/removing-the-label-from-djangos-textarea-widget/1080735#10807351Answer by lemonad for Removing the Label From Django's TextArea Widgetlemonad2009-07-03T20:30:22Z2009-07-03T20:30:22Z<p>This should work with the latest version (trunk) of django:</p>
<pre><code>comment = forms.CharField(label="", help_text="", widget=forms.Textarea())
</code></pre>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/1080650/removing-the-label-from-djangos-textarea-widget/1080736#10807361Answer by GrzegorzOledzki for Removing the Label From Django's TextArea WidgetGrzegorzOledzki2009-07-03T20:30:33Z2009-07-03T20:30:33Z<p>The <a href="http://docs.djangoproject.com/en/dev/ref/forms/api/#ref-forms-api-configuring-label" rel="nofollow">Django documentation on customizing labels</a> says it could be turned off with <code>auto_id</code> argument to Form constructor:</p>
<pre><code>f = ContactForm(auto_id=False)
</code></pre>
http://stackoverflow.com/questions/1080650/removing-the-label-from-djangos-textarea-widget/1080797#10807970Answer by oggy for Removing the Label From Django's TextArea Widgetoggy2009-07-03T20:55:07Z2009-07-03T20:55:07Z<p>A quick-and-dirty solution would be to iterate through the form manualy (with {% for field in form %}) and handle the "problematic" field specially. You could also override the as_p/as_table methods if needed. </p>