turn off comments
authorJan Szejko <janek37@gmail.com>
Tue, 8 Aug 2017 10:12:50 +0000 (12:12 +0200)
committerJan Szejko <janek37@gmail.com>
Tue, 8 Aug 2017 10:12:50 +0000 (12:12 +0200)
apps/catalogue/templates/catalogue/book_detail.html
apps/catalogue/templates/catalogue/image_detail.html

index 836fce1..5f1f790 100755 (executable)
@@ -1,5 +1,5 @@
 {% extends "catalogue/base.html" %}
-{% load book_list comments i18n %}
+{% load book_list i18n %}
 
 
 {% block titleextra %}{{ book.title }}{% endblock %}
 </div>
 
 
-
-<div class='section'>
-    <h2>{% trans "Comments" %}</h2>
-
-    {% render_comment_list for book %}
-    {% with book.get_absolute_url as next %}
-        {% render_comment_form for book %}
-    {% endwith %}
-</div>
-
 {% endblock content %}
index d791bfd..8ad2a63 100755 (executable)
@@ -1,5 +1,5 @@
 {% extends "catalogue/base.html" %}
-{% load book_list comments i18n %}
+{% load book_list i18n %}
 
 
 {% block titleextra %}{{ object.title }}{% endblock %}
 </div>
 
 
-<div class='section'>
-    <h2>{% trans "Comments" %}</h2>
-
-    {% render_comment_list for object %}
-    {% with object.get_absolute_url as next %}
-        {% render_comment_form for object %}
-    {% endwith %}
-</div>
-
 {% endblock content %}