Commit 0d743177 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

[1.3.X] Fixed #17575 -- Typo in an example of ModelAdmin.list_filter. Thanks...

[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
parent 405a0ba9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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