Is it possible to use Django Admin's sortable list in my own app?
The Django Admin interface displays tables in sortable lists, where the columns are clickable to change the sort order.
Is it possible to use this type of list view in my own code? I want to display a list and make it sortable like this, but I don't want to expose the admin interface to my users.
I've tried django-sortable-listview, but it's not well maintained and doesn't quite do what I want.
Suggestions of other third-party modules also very welcome! I'm just trying desperately not to reinvent the wheel.