Skip to content

Instantly share code, notes, and snippets.

@djangosporti
Forked from rafaelcanovas/forms.py
Last active August 29, 2015 14:11
Show Gist options
  • Save djangosporti/f08ae12b3b5f5854813f to your computer and use it in GitHub Desktop.
Save djangosporti/f08ae12b3b5f5854813f to your computer and use it in GitHub Desktop.
from django import forms
class HTML5Form(forms.Form):
def __init__(self, *args, **kwargs):
super(MyForm, self).__init__(*args, **kwargs)
for _, field in self.fields.items():
if field.widget.is_required:
field.widget.attrs['required'] = 'required'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment