From b084936ad9a1e5d7edfcfeb3495b997cb2fe368b Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 14 Sep 2010 18:47:12 -0500 Subject: Ensure consistent date formatting everywhere Set up a default DATE_FORMAT in settings.py and use it everywhere we do the '|date' template filter rather than hardcoding the value in the template. This also fixes a regression with news date/time now that we changed the field to store both date and time. Signed-off-by: Dan McGee --- templates/packages/group_details.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/packages/group_details.html') diff --git a/templates/packages/group_details.html b/templates/packages/group_details.html index f15efaa..df9c5e9 100644 --- a/templates/packages/group_details.html +++ b/templates/packages/group_details.html @@ -29,7 +29,7 @@ {{ pkg.pkgver }}-{{ pkg.pkgrel }} {% endif %} {{ pkg.pkgdesc }} - {{ pkg.last_update|date:"Y-m-d" }} + {{ pkg.last_update|date }} {% endfor %} -- cgit v1.2.3-24-g4f1b