Changeset 141
- Timestamp:
- 07/17/05 00:54:43 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial02.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial02.txt
r140 r141 412 412 fields. 413 413 414 This is shaping up well. Finally, let's add some search capability::414 This is shaping up well. Let's add some search capability:: 415 415 416 416 search_fields = ('question', ) … … 419 419 search terms, Django will search the ``question`` field. You can use as many 420 420 fields as you'd like -- although because it uses a LIKE query behind the 421 scenes, keep it reasonable to mind your database performance.421 scenes, keep it reasonable, to keep your database happy. 422 422 423 423 Finally, because Poll objects have dates, it'd be convenient to be able to
