Updated documentation around extending custom templates.

master
Brandon Taylor 2018-03-19 20:54:23 -04:00
parent f515f93d22
commit d8df8bab55
2 changed files with 9 additions and 11 deletions

View File

@ -413,12 +413,12 @@ change_form_template_extends = 'admin/change_form.html'
change_list_template_extends = 'admin/change_list.html'
```
If you need to extend the inline change form templates, you'll need to select the right one, depending on your version of Django. For Django 1.5.x or below, you'll need to extend one of the following:
If you need to extend the inline change form templates, you'll need to select the right one, depending on your version of Django. For 1.10.x or below, you'll need to extend one of the following:
templates/adminsortable/edit_inline/stacked-1.5.x.html
templates/adminsortable/edit_inline/tabular-inline-1.5.x.html
templates/adminsortable/edit_inline/stacked-1.10.x.html
templates/adminsortable/edit_inline/tabular-inline-1.10.x.html
For Django 1.6.x, extend:
otherwise, extend:
templates/adminsortable/edit_inline/stacked.html
templates/adminsortable/edit_inline/tabular.html

View File

@ -51,7 +51,7 @@ Download django-admin-sortable from
`source <https://github.com/iambrandontaylor/django-admin-sortable/archive/master.zip>`__
1. Unzip the directory and cd into the uncompressed project directory
2.
2.
- Optional: Enable your virtualenv
@ -518,16 +518,14 @@ These attributes have default values of:
change_form_template_extends = 'admin/change_form.html'
change_list_template_extends = 'admin/change_list.html'
If you need to extend the inline change form templates, youll need to
select the right one, depending on your version of Django. For Django
1.5.x or below, youll need to extend one of the following:
If you need to extend the inline change form templates, you'll need to select the right one, depending on your version of Django. For 1.10.x or below, you'll need to extend one of the following:
::
templates/adminsortable/edit_inline/stacked-1.5.x.html
templates/adminsortable/edit_inline/tabular-inline-1.5.x.html
templates/adminsortable/edit_inline/stacked-1.10.x.html
templates/adminsortable/edit_inline/tabular-inline-1.10.x.html
For Django 1.6.x, extend:
otherwise, extend:
::