summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHarm Geerts <github@geertswei.nl>2013-06-20 03:02:25 +0200
committerTim Graham <timograham@gmail.com>2013-06-20 10:01:13 -0400
commit891d00335389734b68df3b9f663dee8aa327322e (patch)
tree4aaabe7f6eede68c9dde06de749126933519e156 /docs
parentf171ed6b68ef6511268da314769c0ce6ef373f01 (diff)
[1.5.x] Modified tutorial 3 to use RequestContext in place of Context.
Backport of df4a74d709 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial03.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 539a5684cc..d0c56f2087 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -339,14 +339,14 @@ Put the following code in that template:
Now let's update our ``index`` view in ``polls/views.py`` to use the template::
from django.http import HttpResponse
- from django.template import Context, loader
+ from django.template import RequestContext, loader
from polls.models import Poll
def index(request):
latest_poll_list = Poll.objects.order_by('-pub_date')[:5]
template = loader.get_template('polls/index.html')
- context = Context({
+ context = RequestContext({
'latest_poll_list': latest_poll_list,
})
return HttpResponse(template.render(context))
@@ -377,7 +377,7 @@ rewritten::
return render(request, 'polls/index.html', context)
Note that once we've done this in all these views, we no longer need to import
-:mod:`~django.template.loader`, :class:`~django.template.Context` and
+:mod:`~django.template.loader`, :class:`~django.template.RequestContext` and
:class:`~django.http.HttpResponse` (you'll want to keep ``HttpResponse`` if you
still have the stub methods for ``detail``, ``results``, and ``vote``).