aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/views.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-09-10 16:48:01 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-09-10 16:48:01 +0100
commita336fc622aee1676470b316b8559de295de54094 (patch)
tree46fcb3be8c61600b7c7c1ee4ae5db2dfa0d62e0d /ctrack/caf/views.py
parent0ac9dd52b75a19e17098daa1c06a46fc7fa113e7 (diff)
moving forward with systems in scope list page
Diffstat (limited to 'ctrack/caf/views.py')
-rw-r--r--ctrack/caf/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/caf/views.py b/ctrack/caf/views.py
index 480e305..08ab736 100644
--- a/ctrack/caf/views.py
+++ b/ctrack/caf/views.py
@@ -50,7 +50,7 @@ class ListApplicableSystem(LoginRequiredMixin, PermissionRequiredMixin, ListView
permission_required = "caf.view_caf"
def get_queryset(self):
- ess = ApplicableSystem.objects.all().order_by("organisation__name")
+ ess = ApplicableSystem.objects.all().order_by("name")
return ess
def get_context_data(self, **kwargs):