diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 19:31:52 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 19:31:52 +0000 |
commit | 4c3a0d5808054456f5a90c13d8af62f334e7e031 (patch) | |
tree | 69c9222f64ca1112bd511637228d394d42f46ae2 /ctrack/caf/templates | |
parent | ec21e940b9bbfa235961be630dec8547f81396ce (diff) |
renamed EssentialService to ApplicableSystem and a few other tweaks
Diffstat (limited to 'ctrack/caf/templates')
-rw-r--r-- | ctrack/caf/templates/caf/applicablesystem_list.html (renamed from ctrack/caf/templates/caf/essentialservice_list.html) | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ctrack/caf/templates/caf/essentialservice_list.html b/ctrack/caf/templates/caf/applicablesystem_list.html index 16bbfba..caeee44 100644 --- a/ctrack/caf/templates/caf/essentialservice_list.html +++ b/ctrack/caf/templates/caf/applicablesystem_list.html @@ -2,32 +2,32 @@ {% load static %} -{% block title %}Essential Services{% endblock %} +{% block title %}Applicable Systems{% endblock %} {% block content %} <div class="container"> <div class="row"> <div class="col-sm-12"> - <h3>Essential Services</h3> - + <h3>Applicable Systems</h3> + <table class="table-sm table-striped table-bordered"> <thead> <tr> <th>Organisation</th> - <th>Essential Service</th> + <th>System</th> <th>Sub Mode</th> <th class="tabaligncenter">Confidence Grade</th> <th>Triage Review Date</th> <th>Review Inspector</th> </tr> </thead> - {% for es in object_list %} + {% for sys in object_list %} <tr> - <td>{{ es.organisation.name }}</td> - <td>{{ es.name }}</td> - <td>{{ es.organisation.submode.descriptor }}</td> - <td class="tabaligncenter">{{ es.caf.confidence_grading.descriptor }}</td> - <td>{{ es.caf.triage_review_date }}</td> - <td>{{ es.caf.triage_review_inspector.name }}</td> + <td>{{ sys.organisation.name }}</td> + <td>{{ sys.name }}</td> + <td>{{ sys.organisation.submode.descriptor }}</td> + <td class="tabaligncenter">{{ sys.caf.confidence_grading.descriptor }}</td> + <td>{{ sys.caf.triage_review_date }}</td> + <td>{{ sys.caf.triage_review_inspector.name }}</td> </tr> {% endfor %} </table> |