aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/models.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ctrack/caf/models.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ctrack/caf/models.py b/ctrack/caf/models.py
index 2069612..a031657 100644
--- a/ctrack/caf/models.py
+++ b/ctrack/caf/models.py
@@ -1,5 +1,6 @@
from django.db import models
+from ctrack.caf.managers import ApplicableSystemManager
from ctrack.organisations.models import Organisation, Person
@@ -55,6 +56,8 @@ class ApplicableSystem(models.Model):
class Meta:
verbose_name = "Applicable System"
+ objects = ApplicableSystemManager()
+
def __str__(self):
return f"{self.organisation.name} | {self.name}"