From ff9f0fe89ee9220c5bec89b903266a455ae40e2f Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 4 Jul 2016 16:22:14 -0400 Subject: [PATCH] Fix up date format --- templates/admin.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/admin.html b/templates/admin.html index e2ef179..2cc0f6f 100644 --- a/templates/admin.html +++ b/templates/admin.html @@ -109,7 +109,7 @@ {% for donation in donations %} - {{ donation.created.isoformat() }} + {{ donation.created.strftime("%Y-%m-%d") }} {{ donation.user.email }} {{ donation.project.name if donation.project else "" }} {{ donation.comment if donation.comment else "" }}