From cf0cc3358b2de523013a27af2ce6787e86b3932c Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 22 May 2011 16:40:31 -0500 Subject: [PATCH] Slightly better spacing in media.html --- .../mediagoblin/user_pages/media.html | 27 ++++++++++++------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index 3c781006..036bf726 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -20,20 +20,27 @@ {# temporarily, an "image gallery" that isn't one really ;) #} {% if media %} -

Media details for {{media.uploader().username}} - / {{media.title}} +

+ Media details for + + {{- media.uploader().username }} + / {{media.title}}

- -
Uploaded on {{ "%4d-%02d-%02d"|format(media.created.year, - media.created.month,media.created.day)}} by {{media.uploader().username}} -
Description: {{media.description}} +
+ Uploaded on + {{ "%4d-%02d-%02d"|format(media.created.year, + media.created.month, media.created.day) }} + by + + {{- media.uploader().username }} +
+ Description: {{ media.description }}
{% else %}

Sorry, no such media found.

-- 2.25.1