diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index c0ff3c6..ed42953 100644
a
|
b
|
subclass::
|
578 | 578 | class PersonAdmin(UserAdmin): |
579 | 579 | list_filter = ('company__name',) |
580 | 580 | |
581 | | * a class inheriting from :mod:`django.contrib.admin.SimpleListFilter`, |
| 581 | * .. versionadded:: 1.4 |
| 582 | |
| 583 | a class inheriting from :mod:`django.contrib.admin.SimpleListFilter`, |
582 | 584 | which you need to provide the ``title`` and ``parameter_name`` |
583 | 585 | attributes to and override the ``lookups`` and ``queryset`` methods, |
584 | 586 | e.g.:: |