parent
29a05bcd63
commit
1ebf86b4aa
|
|
@ -1,6 +1,6 @@
|
||||||
# Django Admin Sortable
|
# Django Admin Sortable
|
||||||
|
|
||||||
Current version: 1.6.6
|
Current version: 1.6.7
|
||||||
|
|
||||||
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,
|
||||||
|
|
@ -316,8 +316,8 @@ 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.6.6?
|
### What's new in 1.6.7?
|
||||||
- Multiple sorting_filters
|
- Spanish localization. Thanks @jerivas!
|
||||||
|
|
||||||
|
|
||||||
### Future
|
### Future
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION = (1, 6, 6) # following PEP 386
|
VERSION = (1, 6, 7) # following PEP 386
|
||||||
DEV_N = None
|
DEV_N = None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -8,7 +8,7 @@ except:
|
||||||
setup(
|
setup(
|
||||||
name='django-admin-sortable',
|
name='django-admin-sortable',
|
||||||
version=__import__('adminsortable').__version__,
|
version=__import__('adminsortable').__version__,
|
||||||
description='Drag and drop sorting for models and inline models in Django admin',
|
description='Drag and drop sorting for models and inline models in Django admin.',
|
||||||
long_description=README,
|
long_description=README,
|
||||||
license='APL',
|
license='APL',
|
||||||
author='Brandon Taylor',
|
author='Brandon Taylor',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue