Forgot switch to media.uploader() in the same way on two lines :P

This commit is contained in:
Christopher Allan Webber 2011-05-22 16:37:58 -05:00
parent 16509be160
commit 4194b05d98

View File

@ -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 %}