attrs
A dictionary containing HTML attributes to be set on the rendered widget.
>>> from django import forms
>>> name = forms.TextInput(attrs={'size': 10, 'title': 'Your name',})
>>> name.render('name', 'A name')
'<input title="Your name" type="text" name="name" value="A name" size="10" required />'
If you assign a value of True or False to an attribute, it will be rendered as an HTML5 boolean attribute:
>>> name = forms.TextInput(attrs={'required':