From f7f6f053f799d43392601823fdbcc77075f965b4 Mon Sep 17 00:00:00 2001 From: Pierre-antoine Comby Date: Thu, 3 Sep 2020 14:33:26 +0200 Subject: [PATCH] Format date to ISO standard --- apps/note/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/note/tables.py b/apps/note/tables.py index 12ec58a9..0ca50306 100644 --- a/apps/note/tables.py +++ b/apps/note/tables.py @@ -46,7 +46,7 @@ class HistoryTable(tables.Table): } ) - created_at = tables.DateColumn( + created_at = tables.DateTimeColumn(format='Y-m-d H:i:s', attrs={ "td": { "class": "text-nowrap",