Skip to content

Commit

Permalink
Word-wrapped some code examples in tutorial03
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@200 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jul 19, 2005
1 parent 09e825c commit 851b14d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/tutorial03.txt
Expand Up @@ -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)

Expand All @@ -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,
Expand Down

0 comments on commit 851b14d

Please sign in to comment.