According to the Django tutorial, you should access form fields using cleaned_data dictionary. I\'m wondering why I can\'t access the properties of the form directly? My for
You can access your field trought dict.
form.__dict__["fields"]["description"]