Changeset 200
- Timestamp:
- 07/19/05 00:55:42 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r199 r200 173 173 174 174 def index(request): 175 latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')], limit=5) 175 latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')], 176 limit=5) 176 177 output = ', '.join([p.question for p in latest_poll_list]) 177 178 return HttpResponse(output) … … 187 188 188 189 def index(request): 189 latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')], limit=5) 190 latest_poll_list = polls.get_list(order_by=[('pub_date', 'DESC')], 191 limit=5) 190 192 t = template_loader.get_template('polls/index') 191 193 c = Context(request, {
