Opened 14 years ago

Last modified 14 years ago

#13736 closed

possible example code error — at Initial Version

Reported by: ikiini Owned by: nobody
Component: Documentation Version: 1.2
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

def contact(request):

if request.method == 'POST': # If the form has been submitted...

form = ContactForm(request.POST) # A form bound to the POST data
if form.is_valid(): # All validation rules pass

# Process the data in form.cleaned_data
# ...
return HttpResponseRedirect('/thanks/') # Redirect after POST

else:

form = ContactForm() # An unbound form

return render_to_response('contact.html', {

'form': form,

})

Notice that the render_to_response uses the form variable that may not have been initialized. this is located at: http://docs.djangoproject.com/en/1.2/topics/forms/#topics-forms-index

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top