Ticket #16195: ticket_16195.diff

File ticket_16195.diff, 712 bytes (added by Manuel Saelices, 13 years ago)

Patch with the doc

  • docs/ref/contrib/admin/index.txt

     
    355355        because ``raw_id_fields`` and ``radio_fields`` imply custom widgets of
    356356        their own.
    357357
     358.. attribute:: ModelAdmin.get_changelist
     359
     360    .. versionchanged:: 1.2
     361
     362    Returns the Changelist class to be used for listing. By default,
     363    ``django.contrib.admin.views.main.ChangeList`` is used. By inheriting this
     364    class you can change the behavior of the listing.
     365
    358366.. attribute:: ModelAdmin.inlines
    359367
    360368    See :class:`InlineModelAdmin` objects below.
Back to Top