Commit 6799ffad authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Merge pull request #99 from danielroseman/master

Docs: "Form in a view" example doesn't use RequestContext
parents 5ef599c7 5c59e43a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,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,
       })