parent
3c7a012f5f
commit
fc58ee51f0
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[](https://travis-ci.org/iambrandontaylor/django-admin-sortable)
|
[](https://travis-ci.org/iambrandontaylor/django-admin-sortable)
|
||||||
|
|
||||||
Current version: 2.0.17
|
Current version: 2.0.18
|
||||||
|
|
||||||
This project makes it easy to add drag-and-drop ordering to any model in
|
This project makes it easy to add drag-and-drop ordering to any model in
|
||||||
Django admin. Inlines for a sortable model may also be made sortable,
|
Django admin. Inlines for a sortable model may also be made sortable,
|
||||||
|
|
@ -496,11 +496,10 @@ ordering on top of that just seemed a little much in my opinion.
|
||||||
### Status
|
### Status
|
||||||
django-admin-sortable is currently used in production.
|
django-admin-sortable is currently used in production.
|
||||||
|
|
||||||
### What's new in 2.0.17?
|
### What's new in 2.0.18?
|
||||||
- Fixed placement of icons for inline sortables
|
- Fix missing admin icons in Django 1.9
|
||||||
- Update to allow django-admin-sortable to play nice with other apps that define `change_form_template` value as a `@property`
|
|
||||||
|
|
||||||
Thanks to [@vstoykov](https://github.com/vstoykov) for both contributions.
|
Thanks to [@shjohnson-pi](https://github.com/shjohnson-pi)
|
||||||
|
|
||||||
### Future
|
### Future
|
||||||
- Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super.
|
- Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super.
|
||||||
|
|
|
||||||
11
README.rst
11
README.rst
|
|
@ -3,7 +3,7 @@ Django Admin Sortable
|
||||||
|
|
||||||
|Build Status|
|
|Build Status|
|
||||||
|
|
||||||
Current version: 2.0.17
|
Current version: 2.0.18
|
||||||
|
|
||||||
This project makes it easy to add drag-and-drop ordering to any model in
|
This project makes it easy to add drag-and-drop ordering to any model in
|
||||||
Django admin. Inlines for a sortable model may also be made sortable,
|
Django admin. Inlines for a sortable model may also be made sortable,
|
||||||
|
|
@ -611,15 +611,12 @@ Status
|
||||||
|
|
||||||
django-admin-sortable is currently used in production.
|
django-admin-sortable is currently used in production.
|
||||||
|
|
||||||
What's new in 2.0.17?
|
What's new in 2.0.18?
|
||||||
~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
- Fixed placement of icons for inline sortables
|
- Fix missing admin icons in Django 1.9
|
||||||
- Update to allow django-admin-sortable to play nice with other apps
|
|
||||||
that define ``change_form_template`` value as a ``@property``
|
|
||||||
|
|
||||||
Thanks to [@vstoykov](https://github.com/vstoykov) for both
|
Thanks to [@shjohnson-pi](https://github.com/shjohnson-pi)
|
||||||
contributions.
|
|
||||||
|
|
||||||
Future
|
Future
|
||||||
~~~~~~
|
~~~~~~
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION = (2, 0, 17)
|
VERSION = (2, 0, 18)
|
||||||
DEV_N = None
|
DEV_N = None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue