diff options
Diffstat (limited to 'ctrack/organisations/templates')
-rw-r--r-- | ctrack/organisations/templates/organisations/organisation_detail.html | 12 | ||||
-rw-r--r-- | ctrack/organisations/templates/organisations/organisation_list.html | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_detail.html b/ctrack/organisations/templates/organisations/organisation_detail.html index eff4dd3..82c802f 100644 --- a/ctrack/organisations/templates/organisations/organisation_detail.html +++ b/ctrack/organisations/templates/organisations/organisation_detail.html @@ -46,6 +46,14 @@ <td><span class="text-danger">No</span></td> {% endif %} </tr> + <tr> + <td class="w-25"><strong>Lead Inspector:</strong></td> + <td>{{ object.lead_inspector.name }}</td> + </tr> + <tr> + <td class="w-25"><strong>Deputy Lead Inspector:</strong></td> + <td>{{ object.deputy_lead_inspector.name }}</td> + </tr> <tr> <td class="w-25"><strong>Registered Company Name:</strong></td> <td>{{ object.registered_company_name }}</td> @@ -84,7 +92,7 @@ {% if applicable_systems|length > 0 %} {% for es in essential_services %} <tr> - <td style="width: 30%"><a + <td class="w-25"<a href="{% url "organisations:essential_service_detail" es.pk %}">{{ es.name }}</a> </td> <td>{{ es.description }} @@ -114,7 +122,7 @@ {% if applicable_systems|length > 0 %} {% for ass in applicable_systems %} <tr> - <td><a href="{% url "caf:ass_detail" ass.id %}">{{ ass.name }}</a></td> + <td class="w-25"><a href="{% url "caf:ass_detail" ass.id %}">{{ ass.name }}</a></td> <td>{{ ass.function }} </td> </tr> diff --git a/ctrack/organisations/templates/organisations/organisation_list.html b/ctrack/organisations/templates/organisations/organisation_list.html index c282bce..661a0d4 100644 --- a/ctrack/organisations/templates/organisations/organisation_list.html +++ b/ctrack/organisations/templates/organisations/organisation_list.html @@ -35,7 +35,7 @@ <tr> <td><a href="{% url "organisations:detail" org.slug %}">{{ org.name }}</a></td> <td>{{ org.submode }}</td> - <td>LEAD INSPECTOR</td> + <td>{{ org.lead_inspector }}</td> <td> {% if org.primary_contacts %} <ul style="list-style-type:none; float:left; padding: 0"> |