parent
e87a1444b4
commit
3f49a72a6d
|
|
@ -28,6 +28,8 @@ django-admin-sortable 1.6.6 introduced a backward-incompatible change for the `s
|
||||||
|
|
||||||
django-admin-sortable 1.7.1 and higher are compatible with Python 3.
|
django-admin-sortable 1.7.1 and higher are compatible with Python 3.
|
||||||
|
|
||||||
|
django-admin-sortable 2.1.6 ihas a bug. Please don't use it :)
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
1. `$ pip install django-admin-sortable`
|
1. `$ pip install django-admin-sortable`
|
||||||
|
|
@ -595,8 +597,8 @@ 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.1.6?
|
### What's new in 2.1.7?
|
||||||
- Added inclusion of custom JavaScript callbacks after sorting is performed, if desired.
|
- Bug fix for inlines that caused sorting to stop working.
|
||||||
|
|
||||||
### 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.
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,8 @@ the new tuple-based format if you haven’t already.
|
||||||
|
|
||||||
django-admin-sortable 1.7.1 and higher are compatible with Python 3.
|
django-admin-sortable 1.7.1 and higher are compatible with Python 3.
|
||||||
|
|
||||||
|
django-admin-sortable 2.1.6 ihas a bug. Please don’t use it :)
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|
@ -729,11 +731,10 @@ Status
|
||||||
|
|
||||||
django-admin-sortable is currently used in production.
|
django-admin-sortable is currently used in production.
|
||||||
|
|
||||||
What’s new in 2.1.5?
|
What’s new in 2.1.7?
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
- Support for Django Admin filters. Credit to
|
- Bug fix for inlines that caused sorting to stop working.
|
||||||
`timur-orudzhov <https://github.com/timur-orudzhov>`__.
|
|
||||||
|
|
||||||
Future
|
Future
|
||||||
~~~~~~
|
~~~~~~
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION = (2, 1, 6)
|
VERSION = (2, 1, 7)
|
||||||
DEV_N = None
|
DEV_N = None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue