new covers
[redakcja.git] / src / documents / templates / documents / book_detail.html
1 {% extends "documents/base.html" %}
2 {% load book_list i18n %}
3 {% load bootstrap4 %}
4
5
6 {% block titleextra %}{{ book.title }}{% endblock %}
7
8
9 {% block content %}
10
11   <div class="card mt-4">
12     <div class="card-header">
13       <h1>{{ book.title }}</h1>
14     </div>
15     <div class="card-body">
16       <div class="row">
17         <div class="col-md-8">
18
19
20 {% if editable %}<form method='POST'>{% csrf_token %}{% endif %}
21     {% bootstrap_form form %}
22         {% if editable %}
23         {% buttons %}
24         <button type="submit" class="btn btn-primary">{% trans "Save" %}</button>
25         {% endbuttons %}
26     {% endif %}
27 {% if editable %}</form>{% endif %}
28
29 {% if editable %}
30     {% if book.gallery %}
31     <p><a href="{% url 'documents_book_gallery' book.slug %}">{% trans "Edit gallery" %}</a></p>
32     {% endif %}
33
34     <p style="text-align:right"><a class="btn btn-sm btn-danger" href="{% url 'documents_book_append' book.slug %}">{% trans "Append to other book" %}</a></p>
35 {% endif %}
36
37
38         </div>
39         <div class="col-md-4">
40           {% with cbook=book.catalogue_book %}
41             {% if cbook %}
42               W katalogu:
43               <a href="{% url 'catalogue_book' cbook.slug %}">{{ cbook }}</a>
44             {% endif %}
45           {% endwith %}
46         </div>
47       </div>
48     </div>
49   </div>
50
51   <div class="card mt-4">
52     <div class="card-header">
53       <h2>{% trans "Chunks" %}</h2>
54     </div>
55     <div class="card-body">
56
57     <table class='single-book-list table'><tbody>
58     {% for chunk in book %}
59         {% include 'documents/book_list/chunk.html' %}
60     {% endfor %}
61     </tbody></table>
62     </div>
63   </div>
64
65
66
67
68 <div class='card mt-4'>
69
70 <div class="card-header">
71   <h2>{% trans "Publication" %}</h2>
72   </div>
73 <div class="card-body">
74   <div class="row">
75     <div class="col-lg-3">
76       <img class="cover-preview" src="{% url 'cover_preview' book.slug %}" />
77       {% if book.dc_cover_image %}
78         <a href="{{ book.dc_cover_image.get_absolute_url }}">{{ book.dc_cover_image }}</a>
79       {% endif %}
80       <br><br>
81
82       <form action="{% url 'cover_quick_import' book.pk %}" method="post">
83         {% csrf_token %}
84         <div class="input-group">
85           <input type="url" name="url" class="form-control" placeholder="URL okładki">
86           <button type="submit" class="btn btn-sm btn-info">Ustaw</button>
87         </div>
88       </form>
89
90
91       <br><br>
92       <form action="{% url 'cover_preview' book.slug %}">
93         <input type="hidden" name="download" value="1">
94         Pobierz okładkę:
95         <div class="input-group">
96           <select class="form-control" name='cover_class'>
97             <option value="default">tradycyjna</option>
98             <option value="m">nowa</option>
99           </select><br>
100           <input class="form-control" name="width" type="number" required value="600" size="3" placeholder="szer.">
101           <input class="form-control" name="height" type="number" size="3" placeholder="wys.">
102           <button type="submit" class="btn btn-sm btn-primary">🡇</button>
103         </div>
104       </form>
105     </div>
106     <div class="col-lg-9">
107 <p>{% trans "Last published" %}:
108     {% if book.last_published %}
109         {{ book.last_published }}
110     {% else %}
111         &mdash;
112     {% endif %}
113 </p>
114
115 {% if publishable %}
116     <p>
117     <a href="{% url 'documents_book_xml' book.slug %}" rel="nofollow">{% trans "Full XML" %}</a><br/>
118     <a target="_blank" href="{% url 'documents_book_html' book.slug %}" rel="nofollow">{% trans "HTML version" %}</a><br/>
119     <a href="{% url 'documents_book_txt' book.slug %}" rel="nofollow">{% trans "TXT version" %}</a><br/>
120     <a href="{% url 'documents_book_pdf' book.slug %}" rel="nofollow">{% trans "PDF version" %}</a><br/>
121     <a href="{% url 'documents_book_pdf_mobile' book.slug %}" rel="nofollow">{% trans "PDF version for mobiles" %}</a><br/>
122     <a href="{% url 'documents_book_epub' book.slug %}" rel="nofollow">{% trans "EPUB version" %}</a><br/>
123     <a href="{% url 'documents_book_mobi' book.slug %}" rel="nofollow">{% trans "MOBI version" %}</a><br/>
124     </p>
125
126     {% if user.is_authenticated %}
127         <!--
128         Angel photos:
129         Angels in Ely Cathedral (http://www.flickr.com/photos/21804434@N02/4483220595/) /
130         mira66 (http://www.flickr.com/photos/21804434@N02/) /
131         CC BY 2.0 (http://creativecommons.org/licenses/by/2.0/)
132         -->
133         <form method="POST" action="{% url 'documents_publish' book.slug %}">{% csrf_token %}
134             {{ publish_options_form.as_p }}
135             <img src="{{ STATIC_URL }}img/angel-left.png" style="vertical-align: middle" />
136             <button id="publish-button" type="submit">
137                 <span>{% trans "Publish" %}</span></button>
138             <img src="{{ STATIC_URL }}img/angel-right.png" style="vertical-align: middle" />
139             </form>
140     {% else %}
141         <a href="{% url 'cas_ng_login' %}">{% trans "Log in to publish." %}</a>
142     {% endif %}
143 {% else %}
144     <p>{% trans "This book can't be published yet, because:" %}</p>
145     <ul><li>{{ publishable_error }}</li></ul>
146 {% endif %}
147
148 </div>
149   </div>
150 </div>
151 </div>
152
153 {% if doc %}
154   <div class="card mt-4">
155     <div class="card-header">
156       <h2>{% trans "Statistics" %}</h2>
157     </div>
158     <div class="card-body">
159       <table class="table">
160         <thead>
161           <tr>
162             <th>
163               {% trans "book" %}
164             </th>
165             <th>{% trans "characters" %}</th>
166             <th>{% trans "characters (with footnotes)" %}</th>
167             <th>{% trans "words" %}</th>
168             <th>{% trans "words (with footnotes)" %}</th>
169           </tr>
170         </thead>
171         <tbody>
172           {% with stats=book.wldocument.get_statistics %}
173             {% include 'documents/book_stats.html' with book=book stats=stats depth=0 %}
174           {% endwith %}
175         </tbody>
176       </table>
177     </div>
178   </div>
179 {% endif %}
180 {% endblock content %}