aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/templates
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-05-22 16:37:58 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-05-22 16:37:58 -0500
commit4194b05d987d8a0dffc1c29d4d3fc706be15b386 (patch)
tree1463d4db17be82f196b3dc0a95e37146d4d66d35 /mediagoblin/templates
parent16509be160470202147d3b711126c7928790777d (diff)
downloadmediagoblin-4194b05d987d8a0dffc1c29d4d3fc706be15b386.tar.lz
mediagoblin-4194b05d987d8a0dffc1c29d4d3fc706be15b386.tar.xz
mediagoblin-4194b05d987d8a0dffc1c29d4d3fc706be15b386.zip
Forgot switch to media.uploader() in the same way on two lines :P
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r--mediagoblin/templates/mediagoblin/user_pages/media.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html
index 5ccd7299..3c781006 100644
--- a/mediagoblin/templates/mediagoblin/user_pages/media.html
+++ b/mediagoblin/templates/mediagoblin/user_pages/media.html
@@ -22,7 +22,7 @@
{% if media %}
<h1>Media details for <a
href="{{ request.urlgen('mediagoblin.user_pages.user_home',
- user= media.uploader().username) }}">{{media.uploader.username}}</a>
+ user= media.uploader().username) }}">{{media.uploader().username}}</a>
/ {{media.title}}
</h1>
<div>
@@ -32,7 +32,7 @@
<br/>Uploaded on {{ "%4d-%02d-%02d"|format(media.created.year,
media.created.month,media.created.day)}} by <a
href="{{ request.urlgen('mediagoblin.user_pages.user_home',
- user= media.uploader().username) }}">{{media.uploader.username}}</a>
+ user= media.uploader().username) }}">{{media.uploader().username}}</a>
<br/>Description: {{media.description}}
</div>
{% else %}