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 %}
{% for task in tasks %}
- - {{ task.name }} - last at {{ task.last_event.date }}, next at {{ task.next_recurrence }}
+ - {{ task.name }} - last at {{ task.last_event.date|date }}, next at {{ task.next_recurrence|date }}
{% endfor %}
{% 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 @@
{{ task.name }}
- Next scheduled time: {{ task.next_recurrence }}
+ Next scheduled time: {{ task.next_recurrence|date }}
Overdue: {{ task.is_overdue }}