Ticket #12987: 12987-1.1.x.diff

File 12987-1.1.x.diff, 951 bytes (added by Ramiro Morales, 14 years ago)
  • docs/ref/contrib/admin/index.txt

    diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
    a b  
    622622
    623623.. attribute:: ModelAdmin.formfield_overrides
    624624
     625.. versionadded:: 1.1
     626
    625627This provides a quick-and-dirty way to override some of the
    626628:class:`~django.forms.Field` options for use in the admin.
    627629``formfield_overrides`` is a dictionary mapping a field class to a dict of
     
    662664
    663665.. attribute:: ModelAdmin.actions
    664666
     667.. versionadded:: 1.1
     668
    665669A list of actions to make available on the change list page. See
    666670:ref:`ref-contrib-admin-actions` for details.
    667671
    668672.. attribute:: ModelAdmin.actions_on_top
    669673.. attribute:: ModelAdmin.actions_on_bottom
    670674
     675.. versionadded:: 1.1
     676
    671677Controls where on the page the actions bar appears. By default, the admin
    672678changelist displays actions at the top of the page (``actions_on_top = True;
    673679actions_on_bottom = False``).
Back to Top