mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-17 06:20:33 +00:00
Added custom template override to specify which people are sortable in change list. Added initial data fixture for people.
5 lines
119 B
Python
5 lines
119 B
Python
def get_is_sortable(objects):
|
|
if objects:
|
|
if objects.count() > 1:
|
|
return True
|
|
return False
|