Changeset 5801
- Timestamp:
- 08/04/07 23:39:52 (1 year ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (1 diff)
- django/trunk/docs/tutorial04.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r5673 r5801 357 357 358 358 Back to the ``detail()`` view for our poll application. Given the context 359 variable ``poll``, here's what the template might look like:: 359 variable ``poll``, here's what the "polls/detail.html" template might look 360 like:: 360 361 361 362 <h1>{{ poll.question }}</h1> django/trunk/docs/tutorial04.txt
r5798 r5801 9 9 =================== 10 10 11 Let's update our poll detail template from the last tutorial, so that the12 t emplate contains an HTML ``<form>`` element::11 Let's update our poll detail template ("polls/detail.html") from the last 12 tutorial, so that the template contains an HTML ``<form>`` element:: 13 13 14 14 <h1>{{ poll.question }}</h1>
