mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-30 04:30:30 +00:00
5 lines
92 B
Python
5 lines
92 B
Python
|
|
def get_is_sortable(objects):
|
||
|
|
if len(objects) > 1:
|
||
|
|
return True
|
||
|
|
return False
|