diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-14 18:47:12 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-14 18:47:12 -0500 |
commit | b084936ad9a1e5d7edfcfeb3495b997cb2fe368b (patch) | |
tree | 59b55c33255b29c9cada1f7b4921811d496304af /templates/news/list.html | |
parent | 3394a94a4019406b643341771dae057d39af73e3 (diff) |
Ensure consistent date formatting everywhererelease_2010-09-14
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 <dan@archlinux.org>
Diffstat (limited to 'templates/news/list.html')
-rw-r--r-- | templates/news/list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/news/list.html b/templates/news/list.html index 258456a5..14ba79b6 100644 --- a/templates/news/list.html +++ b/templates/news/list.html @@ -28,7 +28,7 @@ <tbody> {% for item in news_list %} <tr class="{% cycle 'odd' 'even' %}"> - <td>{{ item.postdate }}</td> + <td>{{ item.postdate|date }}</td> <td class="wrap"><a href="{{ item.get_absolute_url }}" title="View: {{ item.title }}">{{ item.title }}</a></td> <td>{{ item.author.get_full_name }}</td> |