[1.3.X] Fixed #17575 -- Typo in an example of ModelAdmin.list_filter. Thanks apelisse AT gmail com for the report.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17388 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
405a0ba9de
commit
0d7431774f
|
@ -544,7 +544,7 @@ subclass::
|
||||||
Fields in ``list_filter`` can also span relations using the ``__`` lookup::
|
Fields in ``list_filter`` can also span relations using the ``__`` lookup::
|
||||||
|
|
||||||
class UserAdminWithLookup(UserAdmin):
|
class UserAdminWithLookup(UserAdmin):
|
||||||
list_filter = ('groups__name')
|
list_filter = ('groups__name',)
|
||||||
|
|
||||||
.. attribute:: ModelAdmin.list_per_page
|
.. attribute:: ModelAdmin.list_per_page
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue