{% 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 %}
{% 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 %}