Merge remote branch 'remotes/elrond/misc/lazyserver_paste_local'
[mediagoblin.git] / mediagoblin / templates / mediagoblin / utils / tags.html
index 94c4cf69e81984ce538c32d4f0c398a9885c427f..b3211bd90ff6e1f9143338a6af23c98957474c71 100644 (file)
@@ -1,6 +1,6 @@
 {#
 # GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 Free Software Foundation, Inc
+# Copyright (C) 2011 MediaGoblin contributors.  See AUTHORS.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as published by
 #}
 
 {% block tags_content -%}
+  <h3>Tags</h3>
   <ul class="mediaentry_tags">
     {% for tag in media.tags %}
-      <li class="tag">{{ tag['name'] }}</li>
+      <li class="tag">
+        <a href="{{ request.urlgen(
+                        'mediagoblin.listings.tags_listing',
+                        tag=tag['slug']) }}">{{ tag['name'] }}</a></li>
     {% endfor %}
   </ul>
 {% endblock %}