parent
ca2a414ded
commit
4da0deb503
16
README.md
16
README.md
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[](https://travis-ci.org/iambrandontaylor/django-admin-sortable)
|
[](https://travis-ci.org/iambrandontaylor/django-admin-sortable)
|
||||||
|
|
||||||
Current version: 1.7.4
|
Current version: 1.7.5
|
||||||
|
|
||||||
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,
|
||||||
|
|
@ -406,8 +406,18 @@ ordering on top of that just seemed a little much in my opinion.
|
||||||
django-admin-sortable is currently used in production.
|
django-admin-sortable is currently used in production.
|
||||||
|
|
||||||
|
|
||||||
### What's new in 1.7.4?
|
### What's new in 1.7.5?
|
||||||
- Non-sortable parent models can now have sortable child models without having to override templates thanks to the new `NonSortableParentAdmin` class.
|
- Updated admin code to handle deprecated functions in Django 1.7 and above in a more elegant fashion.
|
||||||
|
- Refactored all Django version checks.
|
||||||
|
- Added new permissions check for 'change' model permissions for Django 1.8.
|
||||||
|
|
||||||
|
|
||||||
|
### Deprecation warnings
|
||||||
|
There are a couple of Django 1.8 deprecation warnings that will be shown when using Python 3.x. These are regarding the following classes in Django that django-admin-sortable extends:
|
||||||
|
- django/forms/widgets.py: ComponentInline.queryset
|
||||||
|
- django/forms/widgets.py: WidgetAdmin.queryset
|
||||||
|
|
||||||
|
These do not currently affect the functionality of django-admin-sortable and should go away once the underlying classes have been updated.
|
||||||
|
|
||||||
|
|
||||||
### Future
|
### Future
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION = (1, 7, 4) # following PEP 386
|
VERSION = (1, 7, 5) # following PEP 386
|
||||||
DEV_N = None
|
DEV_N = None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue