class CharField(**kwargs) [source] Default widget:
Form.fields You can access the fields of Form instance from its fields attribute:
Field.validators The validators argument lets you provide a list of validation functions for this field.
class URLInput [source] Text input: <input type="url" ...>
time_format Similar to TimeInput.format
input_formats A list of formats used to attempt to convert a string to a valid datetime.datetime object.
class DateField(**kwargs) [source] Default widget:
class TextInput [source] Text input: <input type="text" ...>
Form.cleaned_data Each field in a Form class is responsible not only for validating data, but also for “cleaning”
format_value(value) Cleans and returns a value for use in the widget template. value isn’t guaranteed to be valid
Page 2 of 18