Changeset 140
- Timestamp:
- 07/17/05 00:53:34 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial02.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial02.txt
r139 r140 395 395 396 396 Let's add another improvement to the Poll change list page: Filters. Add the 397 following line to ``Poll.admin``: 397 following line to ``Poll.admin``:: 398 398 399 399 list_filter = ('pub_date', ) … … 412 412 fields. 413 413 414 This is shaping up well. Finally, let's add some search capability: 414 This is shaping up well. Finally, let's add some search capability:: 415 415 416 416 search_fields = ('question', )
