From fcafbe83f3510fb4d4be6a72921ca088b5151933 Mon Sep 17 00:00:00 2001 From: MR Lemon Date: Thu, 16 Apr 2020 20:41:41 +0100 Subject: CAF list page coming together --- ctrack/caf/templates/caf/caf_list.html | 43 +++++++++++++++++++++++----------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/ctrack/caf/templates/caf/caf_list.html b/ctrack/caf/templates/caf/caf_list.html index f14b34f..1deafae 100644 --- a/ctrack/caf/templates/caf/caf_list.html +++ b/ctrack/caf/templates/caf/caf_list.html @@ -2,27 +2,42 @@ {% load static %} -{% block title %} CAFs {% endblock %} +{% block title %} CAF - All CAF Summary {% endblock %} {% block content %}
-

CAFs in system

+

CAF Summary

+
+
+ + + + + + + + + + {% for caf in object_list %} + + + + + + + {% endfor %} - {% for caf in object_list %} -
-
-
-
-
{{ caf.organisation.name }}_{{ caf.version }} | {{ caf.sub_mode }}
-

Bobbins text here

- Go somewhere -
-
-
+
OrganisationVersionSub ModeApplicable Systems
{{ caf.organisation }}{{ caf.version }}{{ caf.sub_mode }} +
    + {% for applicable_system in caf.applicable_systems.all %} +
  • {{ applicable_system.name }}
  • + {% endfor %} +
+
- {% endfor %} +
{% endblock %} -- cgit v1.2.3