diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-01 08:18:28 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-01 08:18:28 +0100 |
commit | 4df9b1e1f1693a6da24323325a7bdbffc50421c5 (patch) | |
tree | 0b678144c9c35b6f460a5f39a8280cd59a5e1652 /ctrack | |
parent | 1e2993a8e092bf4b725ebc23d6e79fe60a8b8978 (diff) |
taken the day out of a date format string
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/templates/organisations/organisation_detail.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_detail.html b/ctrack/organisations/templates/organisations/organisation_detail.html index d1dbd2c..492bd31 100644 --- a/ctrack/organisations/templates/organisations/organisation_detail.html +++ b/ctrack/organisations/templates/organisations/organisation_detail.html @@ -217,7 +217,7 @@ {% if engagement_events|length > 0 %} {% for event in engagement_events %} <tr> - <td>{{ event.date |date:"d M Y H:i" }}</td> + <td>{{ event.date |date:"d M Y" }}</td> <td>{{ event.type }}</td> <td><a href="#">{{ event.short_description }}</a></td> {% if event.related_caf %} |