mirror of
https://github.com/django/django.git
synced 2025-06-05 03:29:12 +00:00
[1.4.x] Fixed #18173 - Corrected ModelAdmin documentation for get_changelist.
Thanks Keryn Knight for the report and vanessagomes for the pckport of [d44aa98] from master.atch. Backport of [d44aa98] from master.
This commit is contained in:
parent
9a2ca4266a
commit
dcede04715
@ -378,14 +378,6 @@ subclass::
|
|||||||
because ``raw_id_fields`` and ``radio_fields`` imply custom widgets of
|
because ``raw_id_fields`` and ``radio_fields`` imply custom widgets of
|
||||||
their own.
|
their own.
|
||||||
|
|
||||||
.. attribute:: ModelAdmin.get_changelist
|
|
||||||
|
|
||||||
.. versionchanged:: 1.2
|
|
||||||
|
|
||||||
Returns the Changelist class to be used for listing. By default,
|
|
||||||
``django.contrib.admin.views.main.ChangeList`` is used. By inheriting this
|
|
||||||
class you can change the behavior of the listing.
|
|
||||||
|
|
||||||
.. attribute:: ModelAdmin.inlines
|
.. attribute:: ModelAdmin.inlines
|
||||||
|
|
||||||
See :class:`InlineModelAdmin` objects below.
|
See :class:`InlineModelAdmin` objects below.
|
||||||
@ -1185,6 +1177,12 @@ templates used by the :class:`ModelAdmin` views:
|
|||||||
kwargs['choices'] += (('ready', 'Ready for deployment'),)
|
kwargs['choices'] += (('ready', 'Ready for deployment'),)
|
||||||
return super(MyModelAdmin, self).formfield_for_choice_field(db_field, request, **kwargs)
|
return super(MyModelAdmin, self).formfield_for_choice_field(db_field, request, **kwargs)
|
||||||
|
|
||||||
|
.. method:: ModelAdmin.get_changelist(self, request, **kwargs)
|
||||||
|
|
||||||
|
Returns the Changelist class to be used for listing. By default,
|
||||||
|
``django.contrib.admin.views.main.ChangeList`` is used. By inheriting this
|
||||||
|
class you can change the behavior of the listing.
|
||||||
|
|
||||||
.. method:: ModelAdmin.has_add_permission(self, request)
|
.. method:: ModelAdmin.has_add_permission(self, request)
|
||||||
|
|
||||||
Should return ``True`` if adding an object is permitted, ``False``
|
Should return ``True`` if adding an object is permitted, ``False``
|
||||||
|
Loading…
x
Reference in New Issue
Block a user