summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index 2c148366b..e27e5c0dc 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -229,7 +229,8 @@ class Operation(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem):
def get_owns(cls, user):
owns = super(Operation, cls).get_owns(user)
#owns = owns.annotate(null_count=Count('operation_code'))
- return owns.order_by("common_name", "-year", "operation_code")
+ #return owns.order_by("common_name", "-year", "operation_code")
+ return sorted(owns.all(), key=lambda x:x.cached_label)
def __unicode__(self):
if self.cached_label: