How to set tabindex on forms fields?

django

Solution

You can overide the widget and provide an attrs dictionary with the tab index set:

http://docs.djangoproject.com/en/dev/ref/forms/widgets/#django.forms.Widget.attrs

Problem

How do i set the html attribute "tabindex" on form fields? My template currently looks like.. ``` <div class="field text username"> <label>Email Address</label> {{ form.email }} </div> ```

Original source