Kaydet (Commit) 851b14de authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Word-wrapped some code examples in tutorial03

git-svn-id: http://code.djangoproject.com/svn/django/trunk@200 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 09e825c7
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment