diff --git a/RIGS/templates/RIGS/event_detail.html b/RIGS/templates/RIGS/event_detail.html index 37634abe..1ff73464 100644 --- a/RIGS/templates/RIGS/event_detail.html +++ b/RIGS/templates/RIGS/event_detail.html @@ -229,7 +229,7 @@
- Last edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }} + Last edited at {{ object.last_edited_at }} by {{ object.last_edited_by.name }}
@@ -243,7 +243,7 @@
- Last edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }} + Last edited at {{ object.last_edited_at }} by {{ object.last_edited_by.name }}
diff --git a/RIGS/templates/RIGS/organisation_detail.html b/RIGS/templates/RIGS/organisation_detail.html index b524d422..098d4a42 100644 --- a/RIGS/templates/RIGS/organisation_detail.html +++ b/RIGS/templates/RIGS/organisation_detail.html @@ -8,7 +8,9 @@

{{ object.name }}
- Last edited {{ object.last_edited_at }} by {{ object.last_edited_by.name }} + + Last edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }} +

@@ -67,8 +69,9 @@ {% block footer %}
- Lasted edited at {{ object.last_edited_at|date:"SHORT_DATE_FORMAT" }} - by {{ object.last_edited_by.name }} + + Last edited at {{ object.last_edited_at }} by {{ object.last_edited_by.name }} +
diff --git a/RIGS/templates/RIGS/person_detail.html b/RIGS/templates/RIGS/person_detail.html index a389ba75..cd666a7f 100644 --- a/RIGS/templates/RIGS/person_detail.html +++ b/RIGS/templates/RIGS/person_detail.html @@ -9,7 +9,9 @@

Details

{% if not request.is_ajax %}

{{ object.name }}
- Last edited {{ object.last_edited_at }} by {{ object.last_edited_by.name }} + + Last edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }} +