From fafec8ab91f75e40f82b2e9ac40a8abe47eabfa8 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Sun, 14 Aug 2022 15:25:56 +0200 Subject: [PATCH] Show offset to UTC in note publication date --- notes/templates/note.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/templates/note.html b/notes/templates/note.html index d965325..60353b1 100644 --- a/notes/templates/note.html +++ b/notes/templates/note.html @@ -3,5 +3,5 @@

{{ note.title }}

{% if note.is_draft %}

Status: Draft

{% endif %}
{{ note.content|markdown|safe }}
-

Published on {{ note.publication_date|date:"Y-m-d, H:i" }}

+

Published on {{ note.publication_date|date:"Y-m-d, H:i O" }}

\ No newline at end of file -- 2.34.1