aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/views.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ctrack/caf/views.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ctrack/caf/views.py b/ctrack/caf/views.py
index 2ed969a..6664928 100644
--- a/ctrack/caf/views.py
+++ b/ctrack/caf/views.py
@@ -39,7 +39,8 @@ def caf_detail_view(request, pk):
context = {
'object': caf,
'assessments_and_scores': _scrs,
- 'organisation': ApplicableSystem.objects.filter(caf=caf).first().organisation
+ 'organisation': ApplicableSystem.objects.filter(caf=caf).first().organisation,
+ 'systems': caf.applicable_systems.all()
}
return render(request, 'caf/caf_detail.html', context)