Commit 498bf5c2 authored by Florian Apolloner's avatar Florian Apolloner
Browse files

Merge pull request #212 from kevinlondon/ticket_18614_1_4

[1.4] Ticket 18614 -- Add Imports and change render_to_response to render
parents c2ff0278 c6d06a94
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -89,6 +89,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
@@ -99,7 +102,7 @@ The standard pattern for processing a form in a view looks like this:
       else:
           form = ContactForm() # An unbound form

       return render_to_response('contact.html', {
       return render(request, 'contact.html', {
           'form': form,
       })