diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-11 16:29:33 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-11 16:29:33 +0000 |
commit | 3a43f357419ebf9228f24202f67f28b712db9a2d (patch) | |
tree | e3309897b45bb5c1a40ba381415647caa45b8cb9 /ctrack/organisations/views.py | |
parent | b166e4940fe8132aec381e09ba5ebb1abcc27c6e (diff) |
added systems/caf panel to page
Diffstat (limited to 'ctrack/organisations/views.py')
-rw-r--r-- | ctrack/organisations/views.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ctrack/organisations/views.py b/ctrack/organisations/views.py index f3957e7..b085e3b 100644 --- a/ctrack/organisations/views.py +++ b/ctrack/organisations/views.py @@ -24,4 +24,6 @@ class OrganisationDetailView(LoginRequiredMixin, DetailView): context['addr'] = addr people = org.person_set.all() context['people'] = people + applicable_systems = org.applicablesystem_set.all() + context['applicable_systems'] = applicable_systems return context |