parent
79f5aeded2
commit
344927a393
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[](https://travis-ci.org/iambrandontaylor/django-admin-sortable)
|
[](https://travis-ci.org/iambrandontaylor/django-admin-sortable)
|
||||||
|
|
||||||
Current version: 2.0.15
|
Current version: 2.0.16
|
||||||
|
|
||||||
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,8 +496,11 @@ 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.15?
|
### What's new in 2.0.16?
|
||||||
- Refactored exception handling when determining `order_field_name`
|
- Simplification of admin url patterns
|
||||||
|
- Fixes for sortable lists when using Django CMS
|
||||||
|
|
||||||
|
Thanks to [@vstoykov](https://github.com/vstoykov) for both contributions.
|
||||||
|
|
||||||
### 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.
|
||||||
|
|
|
||||||
13
README.rst
13
README.rst
|
|
@ -3,7 +3,7 @@ Django Admin Sortable
|
||||||
|
|
||||||
|Build Status|
|
|Build Status|
|
||||||
|
|
||||||
Current version: 2.0.15
|
Current version: 2.0.16
|
||||||
|
|
||||||
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,
|
||||||
|
|
@ -50,7 +50,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
|
||||||
|
|
||||||
|
|
@ -611,11 +611,14 @@ Status
|
||||||
|
|
||||||
django-admin-sortable is currently used in production.
|
django-admin-sortable is currently used in production.
|
||||||
|
|
||||||
|
What's new in 2.0.16?
|
||||||
What's new in 2.0.15?
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
- Refactored exception handling when determining ``order_field_name``
|
- Simplification of admin url patterns
|
||||||
|
- Fixes for sortable lists when using Django CMS
|
||||||
|
|
||||||
|
Thanks to [@vstoykov](https://github.com/vstoykov) for both
|
||||||
|
contributions.
|
||||||
|
|
||||||
Future
|
Future
|
||||||
~~~~~~
|
~~~~~~
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
VERSION = (2, 0, 15)
|
VERSION = (2, 0, 16)
|
||||||
DEV_N = None
|
DEV_N = None
|
||||||
|
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
version = '{0}.{1}'.format(VERSION[0], VERSION[1])
|
version = '{0}.{1}'.format(VERSION[0], VERSION[1])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue