Implement sorting for ListView columns without changing your views.
Project description
Implement sorting for ListView columns without changing your views.
Installation
Get it from the cheeseshop:
pip install django_resort
Usage
Read on:
Include django_resort in your INSTALLED_APPS settings.
Load the tags:
{% load resort %}
Jut before the for loop iterating through the object_list, include:
{% auto_sort object_list %} {% for object in object_list %}
In your table header:
<th>{% sort_link field.verbose_name|title field.name %}</th>
Credits
This project is primarily based upon django-sorting which it seems is no longer actively maintained as I could not get it to install using pip.
History
0.1.0 (2013-12-3)
First release on PyPI.