From a005ab151b49ed270f275b434a235f30dbe3269f Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Tue, 8 Dec 2020 16:04:03 -0500 Subject: [PATCH] Properly format dates in templates --- tasks/templates/tasks/index.html | 2 +- tasks/templates/tasks/taskDetail.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/templates/tasks/index.html b/tasks/templates/tasks/index.html index 475ff92..12faf37 100644 --- a/tasks/templates/tasks/index.html +++ b/tasks/templates/tasks/index.html @@ -13,7 +13,7 @@ {% if tasks %} {% else %} diff --git a/tasks/templates/tasks/taskDetail.html b/tasks/templates/tasks/taskDetail.html index c67cacb..481b61c 100644 --- a/tasks/templates/tasks/taskDetail.html +++ b/tasks/templates/tasks/taskDetail.html @@ -1,6 +1,6 @@

{{ tool }}

{{ task.name }}

-

Next scheduled time: {{ task.next_recurrence }}

+

Next scheduled time: {{ task.next_recurrence|date }}

Overdue: {{ task.is_overdue }}