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/view.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/view.html')
-rw-r--r-- | templates/news/view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/news/view.html b/templates/news/view.html index a7c25a43..1c92fe78 100644 --- a/templates/news/view.html +++ b/templates/news/view.html @@ -16,7 +16,7 @@ </ul> {% endif %} - <p class="article-info">{{ news.postdate }} - {{ news.author.get_full_name }}</p> + <p class="article-info">{{ news.postdate|date }} - {{ news.author.get_full_name }}</p> <div class="article-content">{{ news.content|markdown }}</div> |