1
0
mirror of https://github.com/django/django.git synced 2025-07-05 10:19:20 +00:00

[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:
Aymeric Augustin 2012-01-22 18:53:41 +00:00
parent 405a0ba9de
commit 0d7431774f

View File

@ -544,7 +544,7 @@ subclass::
Fields in ``list_filter`` can also span relations using the ``__`` lookup::
class UserAdminWithLookup(UserAdmin):
list_filter = ('groups__name')
list_filter = ('groups__name',)
.. attribute:: ModelAdmin.list_per_page