Legimi button!
[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
141         {% if perms.depot.add_legimibookpublish %}
142           <hr>
143           <form method="post" action="{% url 'depot_legimi_publish' book.pk %}">
144             {% csrf_token %}
145             <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>
146             {% with llp=book.last_legimi_publish %}
147               {% if llp %}
148                 {{ llp.created_at }} &rarr;
149                 {{ llp.started_at }} &rarr;
150                 {{ llp.finished_at }}
151                 ({{ llp.get_status_display }})
152                 <!-- {{ llp.id }} -->
153               {% endif %}
154             {% endwith %}
155           </form>
156         {% endif %}
157
158     {% else %}
159         <a href="{% url 'cas_ng_login' %}">{% trans "Log in to publish." %}</a>
160     {% endif %}
161 {% else %}
162     <p>{% trans "This book can't be published yet, because:" %}</p>
163     <ul><li>{{ publishable_error }}</li></ul>
164 {% endif %}
165
166
167
168     </div>
169   </div>
170 </div>
171 </div>
172
173
174 {% if doc %}
175   <div class="card mt-4">
176     <div class="card-header">
177       <h2>{% trans "Statistics" %}</h2>
178     </div>
179     <div class="card-body">
180       <table class="table">
181         <thead>
182           <tr>
183             <th>
184               {% trans "book" %}
185             </th>
186             <th>{% trans "characters" %}</th>
187             <th>{% trans "characters (with footnotes)" %}</th>
188             <th>{% trans "words" %}</th>
189             <th>{% trans "words (with footnotes)" %}</th>
190           </tr>
191         </thead>
192         <tbody>
193           {% with stats=doc.get_statistics %}
194             {% include 'documents/book_stats.html' with book=book stats=stats depth=0 %}
195           {% endwith %}
196         </tbody>
197       </table>
198     </div>
199   </div>
200 {% endif %}
201 {% endblock content %}