mirror of
https://github.com/django/django.git
synced 2025-06-05 11:39:13 +00:00
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:
parent
069bd054fd
commit
7ade767819
@ -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
|
"This month," "This year." Explore using ``list_filter`` on other types of
|
||||||
fields.
|
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', )
|
search_fields = ('question', )
|
||||||
|
|
||||||
That adds a search box at the top of the change list. When somebody enters
|
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
|
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
|
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
|
Finally, because Poll objects have dates, it'd be convenient to be able to
|
||||||
drill down by date. Add this line::
|
drill down by date. Add this line::
|
||||||
|
Loading…
x
Reference in New Issue
Block a user