[Answered ]-Dual Sortable table columns in django

2👍

✅

I have used django-sorting in past, and it is good for your need. It will provide both ascending and descending ordering for a column.

{% load sorting_tags %}
{% anchor name "Name" %}
{% anchor author "From" %}
{% autosort jobs_list %}

Leave a comment