Fixed #203 -- Added explicit comma to tutorial 2. Thanks, sirpete@iki.fi
git-svn-id: http://code.djangoproject.com/svn/django/trunk@315 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e207378ad3
commit
f14c98e44c
|
@ -330,7 +330,7 @@ change that by giving that method a ``short_description`` attribute::
|
|||
Let's add another improvement to the Poll change list page: Filters. Add the
|
||||
following line to ``Poll.admin``::
|
||||
|
||||
list_filter = ('pub_date', )
|
||||
list_filter = ['pub_date'],
|
||||
|
||||
That adds a "Filter" sidebar that lets people filter the change list by the
|
||||
``pub_date`` field:
|
||||
|
@ -347,7 +347,7 @@ fields.
|
|||
|
||||
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
|
||||
search terms, Django will search the ``question`` field. You can use as many
|
||||
|
|
Loading…
Reference in New Issue