aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/templates
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-08-28 12:20:44 +0100
committerMatthew Lemon <matt@matthewlemon.com>2020-08-28 12:20:44 +0100
commit9e9f4b37c3efd969d6d9f73dad19b78e4c62d134 (patch)
treef5afc81dc99e098a70aeddaceb6282bf9860ceff /ctrack/organisations/templates
parentd004475e5bde2aae4b69496a481f68b0da6b501a (diff)
started adding new content to org detail page - ess service
Diffstat (limited to 'ctrack/organisations/templates')
-rw-r--r--ctrack/organisations/templates/organisations/organisation_detail.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_detail.html b/ctrack/organisations/templates/organisations/organisation_detail.html
index 9ece192..ac73c20 100644
--- a/ctrack/organisations/templates/organisations/organisation_detail.html
+++ b/ctrack/organisations/templates/organisations/organisation_detail.html
@@ -95,6 +95,33 @@
</div>
</div>
</div>
+
+ <div class="row">
+ <div class="col-md-12 my-2">
+ <div class="card bg-light">
+ <div class="card-body">
+ <div class="card-title">Essential Services</div>
+ <div class="table table-responsive">
+ <table class="table">
+ {% if applicable_systems|length > 0 %}
+ {% for es in essential_services %}
+ <tr>
+ <td style="width: 18%">{{ es.name }}</td>
+ <td>{{ es.description }}<br>
+ <span class="text-muted"> | <a href="#" class="small">Edit System</a></span>
+ </td>
+ </tr>
+ {% endfor %}
+ {% else %}
+ <p>button to create new one here</p>
+ {% endif %}
+ </table>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
<div class="row">
<div class="col-md-12 my-2">
<div class="card bg-light">