diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
a
|
b
|
|
622 | 622 | |
623 | 623 | .. attribute:: ModelAdmin.formfield_overrides |
624 | 624 | |
| 625 | .. versionadded:: 1.1 |
| 626 | |
625 | 627 | This provides a quick-and-dirty way to override some of the |
626 | 628 | :class:`~django.forms.Field` options for use in the admin. |
627 | 629 | ``formfield_overrides`` is a dictionary mapping a field class to a dict of |
… |
… |
|
662 | 664 | |
663 | 665 | .. attribute:: ModelAdmin.actions |
664 | 666 | |
| 667 | .. versionadded:: 1.1 |
| 668 | |
665 | 669 | A list of actions to make available on the change list page. See |
666 | 670 | :ref:`ref-contrib-admin-actions` for details. |
667 | 671 | |
668 | 672 | .. attribute:: ModelAdmin.actions_on_top |
669 | 673 | .. attribute:: ModelAdmin.actions_on_bottom |
670 | 674 | |
| 675 | .. versionadded:: 1.1 |
| 676 | |
671 | 677 | Controls where on the page the actions bar appears. By default, the admin |
672 | 678 | changelist displays actions at the top of the page (``actions_on_top = True; |
673 | 679 | actions_on_bottom = False``). |