diff options
Diffstat (limited to 'ctrack/compliance/views.py')
-rw-r--r-- | ctrack/compliance/views.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ctrack/compliance/views.py b/ctrack/compliance/views.py new file mode 100644 index 0000000..e093f23 --- /dev/null +++ b/ctrack/compliance/views.py @@ -0,0 +1,10 @@ +from django.shortcuts import render + +from ctrack.caf.models import CAF + + +def overview(request): + cafs = CAF.objects.all() + context = {"cafs": cafs} + return render(request, "compliance/overview.html", context) + |