How do I get values from form fields in the django framework? I want to do this in views, not in templates...
You can do this after you validate your data.
if myform.is_valid(): data = myform.cleaned_data field = data['field']
Also, read the django docs. They are perfect.