django-admin-sortable-fixwin/adminsortable/utils.py

5 lines
92 B
Python

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