web/hgbook/templates/single_com.html
changeset 2 52d12eb31c30
parent 1 672eaaab9204
child 3 6cee07c589cb
--- a/web/hgbook/templates/single_com.html	Fri Feb 05 23:42:24 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-{% ifequal length 1 %}
-  <a class="commenttoggle" id="toggle_{{ id }}"
-      onclick="return toggleComment('{{ id }}')"
-      href="comments: show / hide">One comment</a>
-{% else %}
-  {% if length %}
-    <a class="commenttoggle" id="toggle_{{ id }}"
-      onclick="return toggleComment('{{ id }}')"
-      href="comments: show / hide">{{ length }} comments</a>
-  {% else %}
-    <a class="commenttoggle" id="toggle_{{ id }}"
-      onclick="return toggleComment('{{ id }}')"
-      href="comments: show / hide">No comments</a>
-    <div class="comment" {% if not newid %} style="display: none;" {% endif %}>
-      <div class="comment_body">Be the first to comment on this paragraph!</div>
-    </div>
-  {% endif %}
-{% endifequal %}
-