A replacement for django-admin-sortable using an unintrusive approach.
This plugin is a generic drag-and-drop ordering module for sorting objects in the list view of the Django
admin interface. It offers simple mixin classes which enrich the functionality of any
existing class derived from admin.ModelAdmin
, admin.StackedInline
or admin.TabluarInline
.
Thus it makes it very easy to integrate with existing models and their model admin interfaces.
Fixed issue #25 and another small bug.
https://github.com/jrief/django-admin-sortable2.
Detailled documentation on ReadTheDocs.
To ask questions or reporting bugs, please use the issue tracker.
All available plugins which add functionality to make list views for the Django admin interface
sortable, offer a base class to be used instead of models.Model
. This abstract base class then
contains a hard coded position field, additional methods, and meta directives.
This inhibits to create sortable abstract models. django-admin-sortable2 does not have these restrictions.
Copyright © 2014 Jacob Rief.
Licensed under the MIT license.