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 %}
22 <h2>{% trans "Editor" %}</h2>
24 <p><a href="{% url wiki_img_editor object.slug %}">{% trans "Proceed to the editor." %}</a></p>
32 <h2>{% trans "Publication" %}</h2>
34 <p>{% trans "Last published" %}:
35 {% if object.last_published %}
36 {{ object.last_published }}
43 {% if user.is_authenticated %}
46 Angels in Ely Cathedral (http://www.flickr.com/photos/21804434@N02/4483220595/) /
47 mira66 (http://www.flickr.com/photos/21804434@N02/) /
48 CC BY 2.0 (http://creativecommons.org/licenses/by/2.0/)
50 <form method="POST" action="{% url catalogue_publish_image object.slug %}">{% csrf_token %}
51 <!--img src="{{ STATIC_URL }}img/angel-left.png" style="vertical-align: middle" /-->
52 <button id="publish-button" type="submit">
53 <span>{% trans "Publish" %}</span></button>
54 <!--img src="{{ STATIC_URL }}img/angel-right.png" style="vertical-align: middle" /-->
57 <a href="{% url login %}">{% trans "Log in to publish." %}</a>
60 <p>{% trans "This book can't be published yet, because:" %}</p>
61 <ul><li>{{ publishable_error }}</li></ul>
68 <h2>{% trans "Comments" %}</h2>
70 {% render_comment_list for object %}
71 {% with object.get_absolute_url as next %}
72 {% render_comment_form for object %}
76 {% endblock content %}