217 | | This works using normal template inheritance, so make sure you inherit from the right thing. |
218 | | |
219 | | In the change forms, the following blocks are available for custom overriding: |
220 | | |
221 | | branding - included from "admin/base" |
222 | | form_top - at the top of the form after the title. |
223 | | after_field_sets - after standard field sets, before the related objects |
224 | | after_related_objects - after edit_inline objects |
| 217 | This works using normal template inheritance, so make sure you inherit from the right thing ( usually "admin/change_form", but for an object in an app that has its own change form, it may be "admin/<app_name>/change_form" ). |
| 218 | |
| 219 | In the change forms, the following blocks are available for custom overriding: |
| 220 | |
| 221 | * branding - included from "admin/base" |
| 222 | * form_top - at the top of the form after the title. |
| 223 | * after_field_sets - after standard field sets, before the related objects |
| 224 | * after_related_objects - after edit_inline objects |