From: Christopher Allan Webber Date: Sat, 20 Aug 2011 14:04:21 +0000 (-0500) Subject: Changing datetime formatting from |format to .stftime() X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ff9ad4617deef01c9ad94db64470185386eb9f0c;p=mediagoblin.git Changing datetime formatting from |format to .stftime() --- diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index 089c4c23..2086d3d6 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -34,9 +34,7 @@

- {% trans date="%4d-%02d-%02d"|format( - media.created.year, - media.created.month, media.created.day), + {% trans date=media.created.strftime("%Y-%m-%d"), user_url=request.urlgen( 'mediagoblin.user_pages.user_home', user=media.uploader().username), @@ -88,11 +86,7 @@ comment = comment['_id'], user = media.uploader().username, media = media._id) }}#comment"> - {{ "%4d-%02d-%02d %02d:%02d"|format(comment.created.year, - comment.created.month, - comment.created.day, - comment.created.hour, - comment.created.minute) }} + {{ comment.created.strftime("%Y-%m-%d %I:%M%p") }}