1 {% extends "catalogue/base.html" %}
2 {% load book_list comments i18n %}
7 <h1>{{ book.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 <p><a href="{% url 'catalogue_book_gallery' book.slug %}">{% trans "Edit gallery" %}</a></p>
24 <p><a href="{% url 'catalogue_book_append' book.slug %}">{% trans "Append to other book" %}</a></p>
30 <h2>{% trans "Chunks" %}</h2>
32 <table class='single-book-list'><tbody>
33 {% for chunk in book %}
34 {{ chunk.short_html|safe }}
45 <h2>{% trans "Publication" %}</h2>
47 <div class="cover-preview">
48 <img class="cover-preview" src="{% url 'cover_preview' book.slug %}" />
49 {% if book.dc_cover_image %}
50 <a href="{{ book.dc_cover_image.get_absolute_url }}">{{ book.dc_cover_image }}</a>
54 <p>{% trans "Last published" %}:
55 {% if book.last_published %}
56 {{ book.last_published }}
64 <a href="{% url 'catalogue_book_xml' book.slug %}" rel="nofollow">{% trans "Full XML" %}</a><br/>
65 <a target="_blank" href="{% url 'catalogue_book_html' book.slug %}" rel="nofollow">{% trans "HTML version" %}</a><br/>
66 <a href="{% url 'catalogue_book_txt' book.slug %}" rel="nofollow">{% trans "TXT version" %}</a><br/>
67 <a href="{% url 'catalogue_book_pdf' book.slug %}" rel="nofollow">{% trans "PDF version" %}</a><br/>
68 <a href="{% url 'catalogue_book_epub' book.slug %}" rel="nofollow">{% trans "EPUB version" %}</a><br/>
71 {% if user.is_authenticated %}
74 Angels in Ely Cathedral (http://www.flickr.com/photos/21804434@N02/4483220595/) /
75 mira66 (http://www.flickr.com/photos/21804434@N02/) /
76 CC BY 2.0 (http://creativecommons.org/licenses/by/2.0/)
78 <form method="POST" action="{% url 'catalogue_publish' book.slug %}">{% csrf_token %}
79 <img src="{{ STATIC_URL }}img/angel-left.png" style="vertical-align: middle" />
80 <button id="publish-button" type="submit">
81 <span>{% trans "Publish" %}</span></button>
82 <img src="{{ STATIC_URL }}img/angel-right.png" style="vertical-align: middle" />
85 <a href="{% url 'login' %}">{% trans "Log in to publish." %}</a>
88 <p>{% trans "This book can't be published yet, because:" %}</p>
89 <ul><li>{{ publishable_error }}</li></ul>
92 <div style="clear: both;"></div>
98 <h2>{% trans "Comments" %}</h2>
100 {% render_comment_list for book %}
101 {% with book.get_absolute_url as next %}
102 {% render_comment_form for book %}
106 {% endblock content %}