Removing the Label From Django's TextArea Widget - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:33:20Z http://stackoverflow.com/feeds/question/1080650 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080650/removing-the-label-from-djangos-textarea-widget 0 Removing the Label From Django's TextArea Widget AlbertoPL 2009-07-03T19:57:55Z 2009-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>&lt;label for="id_text"&gt;Text:&lt;/label&gt; &lt;textarea id="id_text" rows="10" cols="40" name="text"&gt;&lt;/textarea&gt; </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#1080735 1 Answer by lemonad for Removing the Label From Django's TextArea Widget lemonad 2009-07-03T20:30:22Z 2009-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#1080736 1 Answer by GrzegorzOledzki for Removing the Label From Django's TextArea Widget GrzegorzOledzki 2009-07-03T20:30:33Z 2009-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#1080797 0 Answer by oggy for Removing the Label From Django's TextArea Widget oggy 2009-07-03T20:55:07Z 2009-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>