A simple Django templatetag to renders a sortable column to support sorting in tables.
Project description
=====
Sortable Column
=====
Sortable Column is a simple Django templatetag to renders a sortable column to
support sorting in tables.
Detailed documentation on GitHub (https://github.com/weynelucas/django-sortable-column)
Quick start
-----------
1. Add "sortable_column" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'sortable_column',
]
2. Include the following snippet at the top of any template that makes use of
the sortable column tags:
{% load sortable_column %}
3. Use sortable_column tag on your template to render th tags for support the sorting
in tables:
{% sortable_column request=request property="title" title="Title" %}
4. Handle 'sort' and 'order' parameters generated by sortable_column tag in your view function
for sorting your dataset.
Sortable Column
=====
Sortable Column is a simple Django templatetag to renders a sortable column to
support sorting in tables.
Detailed documentation on GitHub (https://github.com/weynelucas/django-sortable-column)
Quick start
-----------
1. Add "sortable_column" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'sortable_column',
]
2. Include the following snippet at the top of any template that makes use of
the sortable column tags:
{% load sortable_column %}
3. Use sortable_column tag on your template to render th tags for support the sorting
in tables:
{% sortable_column request=request property="title" title="Title" %}
4. Handle 'sort' and 'order' parameters generated by sortable_column tag in your view function
for sorting your dataset.