1 {% extends "catalogue/viewer_base.html" %}
3 {% load catalogue_tags %}
6 {% load annoy_banners from annoy %}
9 {% block title %}{{ book.pretty_title }}{% endblock %}
13 <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
14 integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
16 <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
17 integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
18 crossorigin=""></script>
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 }}">
31 {% if book.other_versions.exists %}
33 <a href="#" data-box="other">
34 <span class="label">{% trans "Other versions" %}</span>
40 <a href="#" data-box="wltoc">
41 <span class="label">{% trans "Table of contents" %}</span>
46 <a href="#" data-box="themes">
47 <span class="label">{% trans "Themes" %}</span>
51 <li id="menu-nota_red">
52 <a href="#" data-box="nota_red">
53 <span class="label">{% trans "Edit. note" %}</span>
58 <a href="#info" data-box="info">
59 <span class="label">{% trans "Infobox" %}</span>
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>
77 <article id="main-text">
78 {% with next=book.get_next_text prev=book.get_prev_text %}
80 <a style="float:right; padding: 1em;" href="{% url 'book_text' next.slug %}">{{ next.title }} →</a>
83 <a style="display:inline-block;padding: 1em;" href="{% url 'book_text' prev.slug %}">← {{ prev.title }}</a>
85 <div style="clear:both;"></div>
92 <article id="other-text">
93 <a class="other-text-close" href="#">{% trans "Close" %}</a>
94 <div id="other-text-waiter">{% trans "Please wait..." %}</div>
95 <div id="other-text-body" style="display: none;"></div>
98 <div id="reference-box">
99 <div id="reference-map"></div>
100 <a id="reference-close" href="#">x</a>
101 <div id="reference-images">
103 <a id="reference-link" target="_blank"></a>
108 {% endblock big-pane %}
111 <div id="wltoc" class="box">
113 {% for b in book.ancestor.all %}
114 {% if forloop.counter > 1 %}
117 <a href="{{ b.get_absolute_url }}">{{ b.title }}</a>
120 {% for b in book.get_siblings %}
123 <strong>{{ b.title }}</strong>
124 <div id="heretoc"></div>
126 <a href="{% url 'book_text' b.get_first_text.slug %}">{{ b.title }}</a>
131 {% for b in book.ancestor.all %}
133 {% if not forloop.counter.last %}
138 <strong>{{ book.title }}</strong>
139 <div id="heretoc"></div>
143 <div id="info" class="box">
147 {% if book.other_versions.exists %}
148 <div class="box" id="other">
149 <h2>{% trans "Other versions of the book" %}</h2>
150 <a class="other-text-close" href="#">{% trans "Close the other version" %}</a>
153 {% for other_version in book.other_versions %}
155 <a class="display-other"
156 data-other="{{ other_version.html_url }}"
157 href="{% url 'book_text' other_version.slug %}">
158 {{ other_version.mini_box_nolink }}
167 <div class="box" id="book-short">
168 {% include 'catalogue/book_short.html' %}
171 <div id="annoy-stubs">
172 {% annoy_banners 'book-text-intermission' %}
174 {% for insert in inserts %}
175 {% include 'annoy/dynamic_insert.html' %}
180 <script type="application/json" id="interesting-references">
182 {% for ref in book.reference_set.all %}
183 {% if ref.entity.is_interesting %}
184 "{{ ref.entity.uri }}": {
185 {% if ref.entity.lat and ref.entity.lon %}
186 "location": [{{ ref.entity.lat }}, {{ ref.entity.lon }}],
188 "images": {{ ref.entity.images|safe }},
189 "label": "{{ ref.entity.label }}",
190 "description": "{{ ref.entity.description }}",
191 "wikipedia_link": "{{ ref.entity.wikipedia_link }}"
192 }{% if not forloop.last %},{% endif %}
198 {% endblock footer %}