some usability changes
[redakcja.git] / apps / catalogue / templates / catalogue / book_detail.html
1 {% extends "catalogue/base.html" %}
2 {% load book_list comments i18n %}
3
4 {% block content %}
5
6
7 <h1>{{ book.title }}</h1>
8
9
10 {% if editable %}<form method='POST'>{% csrf_token %}{% endif %}
11 <table class='editable'><tbody>
12     {{ form.as_table }}
13     {% if editable %}
14         <tr><td></td><td><button type="submit">{% trans "Save" %}</button></td></tr>
15     {% endif %}
16 </tbody></table>
17 {% if editable %}</form>{% endif %}
18
19
20 {% if editable %}
21     <p><a href="{% url catalogue_book_append book.slug %}">{% trans "Append to other book" %}</a></p>
22 {% endif %}
23
24
25 <div class='section'>
26
27     <h2>{% trans "Chunks" %}</h2>
28
29     <table class='single-book-list'><tbody>
30     {% for chunk in book %}
31         {{ chunk.short_html|safe }}
32     {% endfor %}
33     </tbody></table>
34
35 </div>
36
37
38
39 <div class='section'>
40
41
42 <h2>{% trans "Publication" %}</h2>
43
44 <p>{% trans "Last published" %}: 
45     {% if book.last_published %}
46         {{ book.last_published }}
47     {% else %}
48         &mdash;
49     {% endif %}
50 </p>
51
52 {% if publishable %}
53     <p>
54     <a href="{% url catalogue_book_xml book.slug %}">{% trans "Full XML" %}</a><br/>
55     <a target="_blank" href="{% url catalogue_book_html book.slug %}">{% trans "HTML version" %}</a><br/>
56     <a href="{% url catalogue_book_txt book.slug %}">{% trans "TXT version" %}</a><br/>
57     {% comment %}
58     <a href="{% url catalogue_book_epub book.slug %}">{% trans "EPUB version" %}</a><br/>
59     <a href="{% url catalogue_book_pdf book.slug %}">{% trans "PDF version" %}</a><br/>
60     {% endcomment %}
61     </p>
62
63     {% if user.is_authenticated %}
64         <!--
65         Angel photos:
66         Angels in Ely Cathedral (http://www.flickr.com/photos/21804434@N02/4483220595/) /
67         mira66 (http://www.flickr.com/photos/21804434@N02/) /
68         CC BY 2.0 (http://creativecommons.org/licenses/by/2.0/)
69         -->
70         <form method="POST" action="{% url catalogue_publish book.slug %}">{% csrf_token %}
71             <img src="{{ STATIC_URL }}img/angel-left.png" style="vertical-align: middle" />
72             <button id="publish-button" type="submit">
73                 <span>{% trans "Publish" %}</span></button>
74             <img src="{{ STATIC_URL }}img/angel-right.png" style="vertical-align: middle" />
75             </form>
76     {% else %}
77         <a href="{% url login %}">{% trans "Log in to publish." %}</a>
78     {% endif %}
79 {% else %}
80     <p>{% trans "This book can't be published yet, because:" %}</p>
81     <ul><li>{{ publishable_error }}</li></ul>
82 {% endif %}
83
84 </div>
85
86
87
88 <div class='section'>
89     <h2>{% trans "Comments" %}</h2>
90
91     {% render_comment_list for book %}
92     {% with book.get_absolute_url as next %}
93         {% render_comment_form for book %}
94     {% endwith %}
95 </div>
96
97 {% endblock content %}