Changeset 745
- Timestamp:
- 09/30/05 11:38:03 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r679 r745 92 92 93 93 The ``poll_id=23`` part comes from ``(?P<poll_id>\d+)``. Using 94 ``(? <name>pattern)`` "captures" the text matched by ``pattern`` and sends it as95 a keyword argument to the view function.94 ``(?P<name>pattern)`` "captures" the text matched by ``pattern`` and sends it 95 as a keyword argument to the view function. 96 96 97 97 Because the URL patterns are regular expressions, there really is no limit on
