Verse stats.
[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             <option value="m-label">nowa + label</option>
100           </select><br>
101           <input class="form-control" name="width" type="number" required value="600" size="3" placeholder="szer.">
102           <input class="form-control" name="height" type="number" size="3" placeholder="wys.">
103           <button type="submit" class="btn btn-sm btn-primary">🡇</button>
104         </div>
105       </form>
106     </div>
107     <div class="col-lg-9">
108 <p>{% trans "Last published" %}:
109     {% if book.last_published %}
110         {{ book.last_published }}
111     {% else %}
112         &mdash;
113     {% endif %}
114 </p>
115
116 {% if publishable %}
117     <p>
118     <a href="{% url 'documents_book_xml' book.slug %}" rel="nofollow">{% trans "Full XML" %}</a><br/>
119     <a target="_blank" href="{% url 'documents_book_html' book.slug %}" rel="nofollow">{% trans "HTML version" %}</a><br/>
120     <a href="{% url 'documents_book_txt' book.slug %}" rel="nofollow">{% trans "TXT version" %}</a><br/>
121     <a href="{% url 'documents_book_pdf' book.slug %}" rel="nofollow">{% trans "PDF version" %}</a><br/>
122     <a href="{% url 'documents_book_pdf_mobile' book.slug %}" rel="nofollow">{% trans "PDF version for mobiles" %}</a><br/>
123     <a href="{% url 'documents_book_epub' book.slug %}" rel="nofollow">{% trans "EPUB version" %}</a><br/>
124     <a href="{% url 'documents_book_mobi' book.slug %}" rel="nofollow">{% trans "MOBI version" %}</a><br/>
125     </p>
126
127     {% if user.is_authenticated %}
128         <!--
129         Angel photos:
130         Angels in Ely Cathedral (http://www.flickr.com/photos/21804434@N02/4483220595/) /
131         mira66 (http://www.flickr.com/photos/21804434@N02/) /
132         CC BY 2.0 (http://creativecommons.org/licenses/by/2.0/)
133         -->
134         <form method="POST" action="{% url 'documents_publish' book.slug %}">{% csrf_token %}
135             {{ publish_options_form.as_p }}
136             <img src="{{ STATIC_URL }}img/angel-left.png" style="vertical-align: middle" />
137             <button id="publish-button" type="submit">
138               <span>{% trans "Publish" %}</span></button>
139             <img src="{{ STATIC_URL }}img/angel-right.png" style="vertical-align: middle" />
140         </form>
141
142         {% if perms.depot.add_legimibookpublish %}
143           <hr>
144           <form method="post" action="{% url 'depot_legimi_publish' book.pk %}">
145             {% csrf_token %}
146             <button class="btn btn-primary" type="submit">Opublikuj na Legimi<br><small>w kategorii: {{ doc.book_info.legimi|default_if_none:doc.book_info.epoch }}</small></button>
147             {% with llp=book.last_legimi_publish %}
148               {% if llp %}
149                 {{ llp.created_at }} &rarr;
150                 {{ llp.started_at }} &rarr;
151                 {{ llp.finished_at }}
152                 ({{ llp.get_status_display }})
153                 <!-- {{ llp.id }} -->
154               {% endif %}
155             {% endwith %}
156           </form>
157         {% endif %}
158
159     {% else %}
160         <a href="{% url 'cas_ng_login' %}">{% trans "Log in to publish." %}</a>
161     {% endif %}
162 {% else %}
163     <p>{% trans "This book can't be published yet, because:" %}</p>
164     <ul><li>{{ publishable_error }}</li></ul>
165 {% endif %}
166
167
168
169     </div>
170   </div>
171 </div>
172 </div>
173
174
175 {% if doc %}
176   <div class="card mt-4">
177     <div class="card-header">
178       <h2>{% trans "Statistics" %}</h2>
179     </div>
180     <div class="card-body">
181       <table class="table">
182         <thead>
183           <tr>
184             <th>
185               {% trans "book" %}
186             </th>
187             <th>{% trans "characters" %}</th>
188             <th>{% trans "characters (with footnotes)" %}</th>
189             <th>{% trans "words" %}</th>
190             <th>{% trans "words (with footnotes)" %}</th>
191             <th>{% trans "wiersze (+ inne znaki)" %}</th>
192             <th>{% trans "wiersze (+ inne znaki, z przypisami)" %}</th>
193           </tr>
194         </thead>
195         <tbody>
196           {% with stats=doc.get_statistics %}
197             {% include 'documents/book_stats.html' with book=book stats=stats depth=0 %}
198           {% endwith %}
199         </tbody>
200       </table>
201     </div>
202   </div>
203 {% endif %}
204 {% endblock content %}