Updated documentation around extending custom templates.
parent
f515f93d22
commit
d8df8bab55
|
|
@ -413,12 +413,12 @@ change_form_template_extends = 'admin/change_form.html'
|
||||||
change_list_template_extends = 'admin/change_list.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/stacked-1.10.x.html
|
||||||
templates/adminsortable/edit_inline/tabular-inline-1.5.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/stacked.html
|
||||||
templates/adminsortable/edit_inline/tabular.html
|
templates/adminsortable/edit_inline/tabular.html
|
||||||
|
|
|
||||||
12
README.rst
12
README.rst
|
|
@ -51,7 +51,7 @@ Download django-admin-sortable from
|
||||||
`source <https://github.com/iambrandontaylor/django-admin-sortable/archive/master.zip>`__
|
`source <https://github.com/iambrandontaylor/django-admin-sortable/archive/master.zip>`__
|
||||||
|
|
||||||
1. Unzip the directory and cd into the uncompressed project directory
|
1. Unzip the directory and cd into the uncompressed project directory
|
||||||
2.
|
2.
|
||||||
|
|
||||||
- Optional: Enable your virtualenv
|
- Optional: Enable your virtualenv
|
||||||
|
|
||||||
|
|
@ -518,16 +518,14 @@ These attributes have default values of:
|
||||||
change_form_template_extends = 'admin/change_form.html'
|
change_form_template_extends = 'admin/change_form.html'
|
||||||
change_list_template_extends = 'admin/change_list.html'
|
change_list_template_extends = 'admin/change_list.html'
|
||||||
|
|
||||||
If you need to extend the inline change form templates, you’ll need to
|
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:
|
||||||
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:
|
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
templates/adminsortable/edit_inline/stacked-1.5.x.html
|
templates/adminsortable/edit_inline/stacked-1.10.x.html
|
||||||
templates/adminsortable/edit_inline/tabular-inline-1.5.x.html
|
templates/adminsortable/edit_inline/tabular-inline-1.10.x.html
|
||||||
|
|
||||||
For Django 1.6.x, extend:
|
otherwise, extend:
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue