Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django: How do I add arbitrary html attributes to input fields on a form?

I have an input field that is rendered with a template like so:

<div class="field">    {{ form.city }} </div> 

Which is rendered as:

<div class="field">     <input id="id_city" type="text" name="city" maxlength="100" /> </div> 

Now suppose I want to add an autocomplete="off" attribute to the input element that is rendered, how would I do that? Or onclick="xyz()" or class="my-special-css-class"?

like image 596
User Avatar asked May 25 '10 04:05

User


1 Answers

Check this page

city = forms.CharField(widget=forms.TextInput(attrs={'autocomplete':'off'})) 
like image 185
Galen Avatar answered Oct 12 '22 21:10

Galen