diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-02-26 13:08:23 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-02-26 13:08:23 -0600 |
commit | 397c22d1396cef285e3752d3972979bf53beb988 (patch) | |
tree | 18a6c5326cf1d9d4fd40edb0824e3c1c6f76e485 | |
parent | 67c7c81162c1114093d4588668d5ba4cf83cf902 (diff) | |
download | mediagoblin-397c22d1396cef285e3752d3972979bf53beb988.tar.lz mediagoblin-397c22d1396cef285e3752d3972979bf53beb988.tar.xz mediagoblin-397c22d1396cef285e3752d3972979bf53beb988.zip |
Stylistic cleanups to some urlgen calls.
This commit sponsored by Stephane Berube. Thank you!
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/media.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index 876ce850..f151c577 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -117,14 +117,14 @@ <div class="comment_author"> <img src="{{ request.staticdirect('/images/icon_comment.png') }}" /> <a href="{{ request.urlgen('mediagoblin.user_pages.user_home', - user = comment_author.username) }}"> + user=comment_author.username) }}"> {{- comment_author.username -}} </a> {% trans %}at{% endtrans %} <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment', - comment = comment.id, - user = media.get_uploader.username, - media = media.slug_or_id) }}#comment"> + comment=comment.id, + user=media.get_uploader.username, + media=media.slug_or_id) }}#comment"> {{- comment.created.strftime("%I:%M%p %Y-%m-%d") -}} </a>: </div> |