aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-03-11 16:47:07 +0000
committerMatthew Lemon <matt@matthewlemon.com>2020-03-11 16:47:07 +0000
commit2e2e867f2bee4c7e2495cc5e64ee1bbac9bd17cc (patch)
treeef600b9203c02677f4fd3fcb0288d047aab6e5ac /ctrack/organisations
parent3a43f357419ebf9228f24202f67f28b712db9a2d (diff)
bit of tidying
Diffstat (limited to '')
-rw-r--r--ctrack/organisations/templates/organisations/organisation_detail.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_detail.html b/ctrack/organisations/templates/organisations/organisation_detail.html
index 51bc495..8104197 100644
--- a/ctrack/organisations/templates/organisations/organisation_detail.html
+++ b/ctrack/organisations/templates/organisations/organisation_detail.html
@@ -19,32 +19,32 @@
<div class="col-sm-6 p-2">
<div class="card bg-light">
<div class="card-body">
- <div class="card-title text-muted mb-1">Key Information</div>
+ <div class="card-title">Key Information</div>
<div class="card-text">
<div class="table-responsive">
<table class="table">
<tr>
- <td>Designation Type:</td>
+ <td><strong>Designation Type:</strong></td>
<td>{{ object.designation_type }}</td>
</tr>
<tr>
- <td>Registered Company Name:</td>
+ <td><strong>Registered Company Name:</strong></td>
<td>{{ object.registered_company_name }}</td>
</tr>
<tr>
- <td>Date Updated:</td>
+ <td><strong>Date Updated:</strong></td>
<td>{{ object.date_updated }}</td>
</tr>
<tr>
- <td>Updated By:</td>
+ <td><strong>Updated By:</strong></td>
<td>{{ object.updated_by }}</td>
</tr>
<tr>
- <td>Active:</td>
+ <td><strong>Active:</strong></td>
<td>{{ object.active }}</td>
</tr>
<tr>
- <td>Comments:</td>
+ <td><strong>Comments:</strong></td>
<td>{{ object.comments }}</td>
</tr>
</table>
@@ -57,17 +57,17 @@
<div class="col-sm-6 p-2">
<div class="card bg-light">
<div class="card-body">
- <div class="card-title text-muted mb-1">System/CAF summary</div>
+ <div class="card-title">NIS Systems</div>
<div class="card-text">
<div class="table-responsive">
<table class="table">
{% for ass in applicable_systems %}
<tr>
- <td>{{ ass.name }}</td>
- <td>{{ ass.description }}
- <a href="#">
- <p class="small">{{ ass.caf }}</p>
- </a>
+ <td><strong>{{ ass.name }}</strong></td>
+ <td>{{ ass.description }}<br>
+ <a href="#" class="small">
+ {{ ass.caf }}
+ </a> <span class="text-muted">|</span> <a href="#" class="small">System Detail</a>
</td>
</tr>
{% endfor %}