e10bc9689681c95262c40cd145dd2e2d0e50fe83
[wolnelektury.git] / src / catalogue / templates / catalogue / book_text.html
1 {% extends "catalogue/viewer_base.html" %}
2 {% load i18n l10n %}
3 {% load catalogue_tags %}
4 {% load chunks %}
5 {% load thumbnail %}
6 {% load annoy_banners from annoy %}
7
8
9 {% block title %}{{ book.pretty_title }}{% endblock %}
10
11
12 {% block extrahead %}
13    <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
14    integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
15          crossorigin=""/>
16     <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
17    integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
18    crossorigin=""></script>
19 {% endblock %}
20
21 {% block menu %}
22   <li>
23     <a href="{{ book.get_absolute_url }}" id="menu-book" data-box="book-short">
24       <img src="{% if book.cover_thumb %}{% thumbnail book.cover_thumb '240x332' as thumb %}{{ thumb.url }}{% empty %}{{ book.cover_thumb.url }}{% endthumbnail %}{% endif %}"
25            width="120" height="166"
26            alt="{{ book.pretty_title }}"
27            title="{{ book.pretty_title }}">
28     </a>
29   </li>
30
31   {% if book.other_versions.exists %}
32     <li id="menu-other">
33       <a href="#" data-box="other">
34         <span class="label">{% trans "Other versions" %}</span>
35       </a>
36     </li>
37   {% endif %}
38
39   <li id="menu-toc">
40     <a href="#" data-box="wltoc">
41       <span class="label">{% trans "Table of contents" %}</span>
42     </a>
43   </li>
44
45   <li id="menu-themes">
46     <a href="#" data-box="themes">
47       <span class="label">{% trans "Themes" %}</span>
48     </a>
49   </li>
50
51   <li id="menu-nota_red">
52     <a href="#" data-box="nota_red">
53       <span class="label">{% trans "Edit. note" %}</span>
54     </a>
55   </li>
56
57   <li id="menu-info">
58     <a href="#info" data-box="info">
59       <span class="label">{% trans "Infobox" %}</span>
60     </a>
61   </li>
62
63   <a href="#" class="settings-switch" id="settings-line-numbers"
64      data-setting="always-hide-line-numbers"><span>{% trans "Numbering" %}</span></a>
65   <a href="#" class="settings-switch" id="settings-themes"
66      data-setting="always-hide-themes"><span>{% trans "Themes" %}</span></a>
67   <a href="#" class="settings-switch" id="settings-annotations"
68      data-setting="no-annotations"><span>{% trans "Footnotes" %}</span></a>
69   <a href="#" class="settings-switch" id="settings-references"
70      data-setting="no-references"><span>{% trans "References" %}</span></a>
71
72 {% endblock menu %}
73
74
75 {% block big-pane %}
76
77   <article id="main-text">
78     {% with next=book.get_next_text prev=book.get_prev_text %}
79       {% if next %}
80         <a style="float:right; padding: 1em;" href="{% url 'book_text' next.slug %}">{{ next.title }}&nbsp;&rarr;</a>
81       {% endif %}
82       {% if prev %}
83         <a style="display:inline-block;padding: 1em;" href="{% url 'book_text' prev.slug %}">&larr;&nbsp;{{ prev.title }}</a>
84       {% endif %}
85       <div style="text-align:center; margin-top:1em;">
86       {% content_warning book %}
87       </div>
88       <div style="clear:both;"></div>
89       {{ book_text|safe }}
90     {% endwith %}
91   </article>
92
93
94
95   <article id="other-text">
96     <a class="other-text-close" href="#">{% trans "Close" %}</a>
97     <div id="other-text-waiter">{% trans "Please wait..." %}</div>
98     <div id="other-text-body" style="display: none;"></div>
99   </article>
100
101   <div id="reference-box">
102     <div id="reference-map"></div>
103     <a id="reference-close" href="#">x</a>
104     <div id="reference-images">
105     </div>
106     <a id="reference-link" target="_blank"></a>
107   </div>
108
109
110
111 {% endblock big-pane %}
112
113 {% block footer %}
114   <div id="wltoc" class="box">
115     {% if book.parent %}
116       {% for b in book.ancestor.all %}
117         {% if forloop.counter > 1 %}
118           <li>
119         {% endif %}
120         <a href="{{ b.get_absolute_url }}">{{ b.title }}</a>
121         <ol>
122       {% endfor %}
123         {% for b in book.get_siblings %}
124           <li>
125             {% if b == book %}
126               <strong>{{ b.title }}</strong>
127               <div id="heretoc"></div>
128             {% else %}
129               <a href="{% url 'book_text' b.get_first_text.slug %}">{{ b.title }}</a>
130             {% endif %}
131           </li>
132         {% endfor %}
133
134         {% for b in book.ancestor.all %}
135         </ol>
136         {% if not forloop.counter.last %}
137           </li>
138         {% endif %}
139         {% endfor %}
140     {% else %}
141       <strong>{{ book.title }}</strong>
142       <div id="heretoc"></div>
143     {% endif %}
144   </div>
145
146   <div id="info" class="box">
147       {% book_info book %}
148   </div>
149
150   {% if book.other_versions.exists %}
151     <div class="box" id="other">
152       <h2>{% trans "Other versions of the book" %}</h2>
153       <a class="other-text-close" href="#">{% trans "Close the other version" %}</a>
154       <ul>
155         {% spaceless %}
156           {% for other_version in book.other_versions %}
157             <li>
158               <a class="display-other"
159                  data-other="{{ other_version.html_url }}"
160                  href="{% url 'book_text' other_version.slug %}">
161                 {{ other_version.mini_box_nolink }}
162               </a>
163             </li>
164           {% endfor %}
165         {% endspaceless %}
166       </ul>
167     </div>
168   {% endif %}
169
170   <div class="box" id="book-short">
171     {% include 'catalogue/book_short.html' %}
172   </div>
173
174   <div id="annoy-stubs">
175     {% annoy_banners 'book-text-intermission' %}
176
177     {% for insert in inserts %}
178       {% include 'annoy/dynamic_insert.html' %}
179     {% endfor %}
180   </div>
181
182   {% localize off %}
183   <script type="application/json" id="interesting-references">
184    {
185        {% for ref in book.references %}
186        {% if ref.entity.is_interesting %}
187        "{{ ref.entity.uri }}": {
188            {% if ref.entity.lat and ref.entity.lon %}
189            "location": [{{ ref.entity.lat }}, {{ ref.entity.lon }}],
190            {% endif %}
191            "images": {{ ref.entity.images|safe }},
192            "label": "{{ ref.entity.label }}",
193            "description": "{{ ref.entity.description }}",
194            "wikipedia_link": "{{ ref.entity.wikipedia_link }}"
195        }{% if not forloop.last %},{% endif %}
196        {% endif %}
197        {% endfor %}
198   }
199   </script>
200   {% endlocalize %}
201 {% endblock footer %}