django-admin-sortable/adminsortable/utils.py
Brandon Taylor 1b4730fef9 Added Person model with sorting_filters set to only order people who are board members.
Added custom template override to specify which people are sortable in change list.
Added initial data fixture for people.
2014-02-05 11:08:02 -05:00

5 lines
119 B
Python

def get_is_sortable(objects):
if objects:
if objects.count() > 1:
return True
return False