[1.1.X] Fixed #13103 -- A bit of re-organization to the custom template ModelAdmin options documentation section to remove some duplication and fix some confusing wording.

Backport of r12868 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12869 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2010-03-27 21:17:23 +00:00
parent 5a6446b443
commit 434b5d5cf6

View File

@ -678,42 +678,30 @@ Controls where on the page the actions bar appears. By default, the admin
changelist displays actions at the top of the page (``actions_on_top = True; changelist displays actions at the top of the page (``actions_on_top = True;
actions_on_bottom = False``). actions_on_bottom = False``).
.. attribute:: ModelAdmin.change_list_template Custom template options
~~~~~~~~~~~~~~~~~~~~~~~
Path to a custom template that will be used by the model objects "change list" The `Overriding Admin Templates`_ section describes how to override or extend
view. Templates can override or extend base admin templates as described in the default admin templates. Use the following options to override the default
`Overriding Admin Templates`_. templates used by the :class:`ModelAdmin` views:
If you don't specify this attribute, a default template shipped with Django
that provides the standard appearance is used.
.. attribute:: ModelAdmin.change_form_template .. attribute:: ModelAdmin.change_form_template
Path to a custom template that will be used by both the model object creation Path to a custom template, used by :meth:`change_view`.
and change views. Templates can override or extend base admin templates as
described in `Overriding Admin Templates`_.
If you don't specify this attribute, a default template shipped with Django .. attribute:: ModelAdmin.change_list_template
that provides the standard appearance is used.
.. attribute:: ModelAdmin.object_history_template Path to a custom template, used by :meth:`changelist_view`.
Path to a custom template that will be used by the model object change history
display view. Templates can override or extend base admin templates as
described in `Overriding Admin Templates`_.
If you don't specify this attribute, a default template shipped with Django
that provides the standard appearance is used.
.. attribute:: ModelAdmin.delete_confirmation_template .. attribute:: ModelAdmin.delete_confirmation_template
Path to a custom template that will be used by the view responsible of showing Path to a custom template, used by :meth:`delete_view` for displaying a
the confirmation page when the user decides to delete one or more model confirmation page when deleting one or more objects.
objects. Templates can override or extend base admin templates as described in
`Overriding Admin Templates`_. .. attribute:: ModelAdmin.object_history_template
Path to a custom template, used by :meth:`history_view`.
If you don't specify this attribute, a default template shipped with Django
that provides the standard appearance is used.
.. _model-admin-methods: .. _model-admin-methods: