1
As with any Django form, you get the validated data from the cleaned_data
dictionary.
Point(form.cleaned_data['lat'], form.cleaned_data['lon'])
Source:stackexchange.com
1
As with any Django form, you get the validated data from the cleaned_data
dictionary.
Point(form.cleaned_data['lat'], form.cleaned_data['lon'])