From 851b14deca6eda4d4b6312f8ed10f65c14115c9c Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 19 Jul 2005 05:55:42 +0000 Subject: [PATCH] Word-wrapped some code examples in tutorial03 git-svn-id: http://code.djangoproject.com/svn/django/trunk@200 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial03.txt | 6 ++++-- 1 file 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,