summaryrefslogtreecommitdiff
path: root/docs/topics/forms
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/forms')
-rw-r--r--docs/topics/forms/index.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index b843107871..4693de6c7e 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -91,6 +91,9 @@ The standard pattern for processing a form in a view looks like this:
.. code-block:: python
+ from django.shortcuts import render
+ from django.http import HttpResponseRedirect
+
def contact(request):
if request.method == 'POST': # If the form has been submitted...
form = ContactForm(request.POST) # A form bound to the POST data