Changeset 527
- Timestamp:
- 08/17/05 10:01:12 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial02.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial02.txt
r477 r527 303 303 # ... 304 304 admin = meta.Admin( 305 # ... 305 306 list_display = ('question', 'pub_date'), 306 307 ) … … 343 344 Because ``pub_date`` is a DateTimeField, Django knows to give the default 344 345 filter options for DateTimeFields: "Any date," "Today," "Past 7 days," 345 "This month," "This year." Explore using ``list_filter`` on other types of 346 fields. 346 "This month," "This year." 347 347 348 348 This is shaping up well. Let's add some search capability::
