Tiny tweaks to tutorial02.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@141 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-17 05:54:43 +00:00
parent 069bd054fd
commit 7ade767819
1 changed files with 2 additions and 2 deletions

View File

@ -411,14 +411,14 @@ filter options for DateTimeFields: "Any date," "Today," "Past 7 days,"
"This month," "This year." Explore using ``list_filter`` on other types of
fields.
This is shaping up well. Finally, let's add some search capability::
This is shaping up well. Let's add some search capability::
search_fields = ('question', )
That adds a search box at the top of the change list. When somebody enters
search terms, Django will search the ``question`` field. You can use as many
fields as you'd like -- although because it uses a LIKE query behind the
scenes, keep it reasonable to mind your database performance.
scenes, keep it reasonable, to keep your database happy.
Finally, because Poll objects have dates, it'd be convenient to be able to
drill down by date. Add this line::