django-sortable icon indicating copy to clipboard operation
django-sortable copied to clipboard

SORT_NONE_CLASS uses SORT_DESC_CLASS when specifying custom classes

Open donbalajadia opened this issue 11 years ago • 0 comments

line 10 of templatetags/sortable.py should be:

SORT_NONE_CLASS = getattr(settings, 'SORT_NONE_CLASS' , 'sort-none')

instead of:

SORT_NONE_CLASS = getattr(settings, 'SORT_DESC_CLASS' , 'sort-none')

donbalajadia avatar Oct 10 '13 20:10 donbalajadia