aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf
diff options
context:
space:
mode:
authorMR Lemon <matt@matthewlemon>2020-04-16 20:41:41 +0100
committerMR Lemon <matt@matthewlemon>2020-04-16 20:41:41 +0100
commitfcafbe83f3510fb4d4be6a72921ca088b5151933 (patch)
tree7be3545631166d169b125d895ad6b3b518fe385a /ctrack/caf
parenta78bb6bd4ccd96bbdb153cf9fc1b83632ccaa276 (diff)
CAF list page coming together
Diffstat (limited to 'ctrack/caf')
-rw-r--r--ctrack/caf/templates/caf/caf_list.html43
1 files 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 %}
<div class="container">
<div class="row">
- <h2>CAFs in system</h2>
+ <h2>CAF Summary</h2>
</div>
+ <div class="row">
+ <div class="col-sm-12">
+ <table id="datatable" class="display compact cell-border" style="width:100%">
+ <thead>
+ <tr>
+ <th>Organisation</th>
+ <th>Version</th>
+ <th>Sub Mode</th>
+ <th>Applicable Systems</th>
+ </tr>
+ </thead>
+ {% for caf in object_list %}
+ <tr>
+ <td><a href="{% url "organisations:detail" slug=caf.organisation.slug %}">{{ caf.organisation }}</a></td>
+ <td>{{ caf.version }}</td>
+ <td>{{ caf.sub_mode }}</td>
+ <td>
+ <ul>
+ {% for applicable_system in caf.applicable_systems.all %}
+ <li>{{ applicable_system.name }}</li>
+ {% endfor %}
+ </ul>
+ </td>
+ </tr>
+ {% endfor %}
- {% for caf in object_list %}
- <div class="row">
- <div class="col-sm-12">
- <div class="card">
- <div class="card-body">
- <h5 class="card-title">{{ caf.organisation.name }}_{{ caf.version }} | {{ caf.sub_mode }}</h5>
- <p class="card-text">Bobbins text here</p>
- <a href="#" class="btn btn-primary">Go somewhere</a>
- </div>
- </div>
- </div>
+ </table>
</div>
- {% endfor %}
+ </div>
</div>
{% endblock %}