Only show the "post a comment" link if there's a logged in user
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 27 Oct 2011 18:13:19 +0000 (13:13 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 27 Oct 2011 18:13:19 +0000 (13:13 -0500)
mediagoblin/templates/mediagoblin/user_pages/media.html

index b8d0b9ff3401493d89b0c5ffdd8d174bf840f77d..c4fe3a71ab1e6bf6f085611b4f6cf7c4ca519984 100644 (file)
@@ -65,7 +65,9 @@
       <br />
       <h3>{% trans %}Comments{% endtrans %}</h3>
 
-      <p><a href="#comment_form">{% trans %}Post a comment{% endtrans %}</a></p>
+      {% if request.user %}
+        <p><a href="#comment_form">{% trans %}Post a comment{% endtrans %}</a></p>
+      {% endif %}
 
       {% if comments %}
         {% for comment in comments %}