diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-31 20:48:13 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-31 20:48:13 -0500 |
commit | 5d9006479088ecadcc4dcef14a9d8ccb0e4227f3 (patch) | |
tree | 9228113c111d33ad2c9b1a5a2cd1971abbcb549f /mediagoblin/templates | |
parent | 71454fd351bcc18662168bd89d6876ea498c3715 (diff) | |
download | mediagoblin-5d9006479088ecadcc4dcef14a9d8ccb0e4227f3.tar.lz mediagoblin-5d9006479088ecadcc4dcef14a9d8ccb0e4227f3.tar.xz mediagoblin-5d9006479088ecadcc4dcef14a9d8ccb0e4227f3.zip |
Updated media detail view to linkify the tags. Adjusted tag link styling.
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/media.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index 7622d6e6..353cf91c 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -97,9 +97,11 @@ media = media._id)) }} </div> {% endif %} + <div class="grid_5 omega"> {% include "mediagoblin/utils/prev_next.html" %} <h3>Sidebar content here!</h3> + <p> {% if media['uploader'] == request.user['_id'] or request.user['is_admin'] %} @@ -116,6 +118,7 @@ </p> {% endif %} </p> + {% if media.tags %} {% include "mediagoblin/utils/tags.html" %} {% endif %} |