1 {% extends "catalogue/base.html" %}
2 {% load book_list comments i18n %}
7 <h1>{{ object.title }}</h1>
10 {% if editable %}<form method='POST'>{% csrf_token %}{% endif %}
11 <table class='editable'><tbody>
14 <tr><td></td><td><button type="submit">{% trans "Save" %}</button></td></tr>
17 {% if editable %}</form>{% endif %}
21 <h2>{% trans "Comments" %}</h2>
23 {% render_comment_list for object %}
24 {% with object.get_absolute_url as next %}
25 {% render_comment_form for object %}
29 {% endblock content %}