aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/templates
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-23 15:31:03 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-23 15:31:03 +0100
commit5d5f3f3626816aeb23778c79bd5a6c15b43aa810 (patch)
treec5ec80a3d6971c33573dcc207b0a81a3a653c4ad /ctrack/organisations/templates
parent4c7c88f2b1bcc5de54de51fae057d736877e1a6c (diff)
fixed the order of events on the org detail page
Diffstat (limited to 'ctrack/organisations/templates')
-rw-r--r--ctrack/organisations/templates/organisations/organisation_detail.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_detail.html b/ctrack/organisations/templates/organisations/organisation_detail.html
index cc14860..65a9c03 100644
--- a/ctrack/organisations/templates/organisations/organisation_detail.html
+++ b/ctrack/organisations/templates/organisations/organisation_detail.html
@@ -187,7 +187,8 @@
<th scope="col" class="col-1">Date</th>
<th scope="col" class="col-2">Description</th>
<th scope="col" class="col-2">Participants</th>
- <th scope="col" class="col-4">Comments</th>
+ <th scope="col" class="col-2">Comments</th>
+ <th scope="col" class="col-2">Response</th>
<th scope="col" class="col-1">Action</th>
</tr>
</thead>
@@ -217,11 +218,14 @@
NA
{% endif %}
</td>
- <td class="col-4">{{ event.comments }}<br>
+ <td class="col-2">{{ event.comments }}<br>
{% if event.document_link %}
- <a class="small" href="{{ event.document_link }}">Link</a>
+ <a class="small" href="{{ event.document_link }}">[URL]</a>
{% endif %}
</td>
+ <td class="col-2">
+ {{ event.requested_response_date }}
+ </td>
<td class="col-1"><a
href="{% url "register:event_update_simple_event_from_org" event.pk object.slug %}"
class="btn btn-outline-secondary btn-sm" role="button">Edit</a>
@@ -285,7 +289,7 @@
<td class="col-3">{{ event.short_description }}</td>
<td class="col-4">{{ event.comments }}<br>
{% if event.document_link %}
- <a class="small" href="{{ event.document_link }}">Link</a>
+ <a class="small" href="{{ event.document_link }}">[URL]</a>
{% endif %}
</td>
<td class="col-1"><a href="#" class="btn btn-outline-secondary btn-sm" role="button">Edit</a>