summaryrefslogtreecommitdiff
path: root/docs/tutorial03.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorial03.txt')
-rw-r--r--docs/tutorial03.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index 6a4ec9952a..74e2a941ca 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -172,7 +172,8 @@ publication date::
from django.utils.httpwrappers import HttpResponse
def index(request):
- latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')], limit=5)
+ latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')],
+ limit=5)
output = ', '.join([p.question for p in latest_poll_list])
return HttpResponse(output)
@@ -186,7 +187,8 @@ So let's use Django's template system to separate the design from Python::
from django.utils.httpwrappers import HttpResponse
def index(request):
- latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')], limit=5)
+ latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')],
+ limit=5)
t = template_loader.get_template('polls/index')
c = Context(request, {
'latest_poll_list': latest_poll_list,