diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-08-14 15:27:56 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-08-14 15:27:56 +0100 |
commit | 74ed83a719a8f34c3e989b84c96f6759ea2f182c (patch) | |
tree | fe0e246569c1ebe372fa8111c381a8e501767db0 /ctrack/organisations | |
parent | bf9b0e6669d4c62e0db59004e5ecd2ff281eff4e (diff) |
list of other systems on form to add system for org
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ctrack/organisations/models.py b/ctrack/organisations/models.py index d7f1194..9eb0a23 100644 --- a/ctrack/organisations/models.py +++ b/ctrack/organisations/models.py @@ -153,8 +153,7 @@ class Organisation(models.Model): return self.person_set.filter(primary_nis_contact=True) def applicable_systems(self): - # TODO - we need to do this - pass + return self.applicablesystem_set.all() class Address(models.Model): |