1 {% extends "catalogue/viewer_base.html" %}
3 {% load catalogue_tags %}
6 {% load annoy_banners from annoy %}
9 {% block title %}{{ book.pretty_title }}{% endblock %}
14 <a href="{{ book.get_absolute_url }}" id="menu-book" data-box="book-short">
15 <img src="{% if book.cover_thumb %}{% thumbnail book.cover_thumb '240x332' as thumb %}{{ thumb.url }}{% empty %}{{ book.cover_thumb.url }}{% endthumbnail %}{% endif %}"
16 width="120" height="166"
17 alt="{{ book.pretty_title }}"
18 title="{{ book.pretty_title }}">
22 {% if book.other_versions.exists %}
24 <a href="#" data-box="other">
25 <span class="label">{% trans "Other versions" %}</span>
31 <a href="#" data-box="toc">
32 <span class="label">{% trans "Table of contents" %}</span>
37 <a href="#" data-box="themes">
38 <span class="label">{% trans "Themes" %}</span>
42 <li id="menu-settings">
43 <a href="#" data-box="settings">
44 <span class="label">{% trans "Settings" %}</span>
48 <li id="menu-nota_red">
49 <a href="#" data-box="nota_red">
50 <span class="label">{% trans "Edit. note" %}</span>
55 <a href="#info" data-box="info">
56 <span class="label">{% trans "Infobox" %}</span>
64 <article id="main-text">
68 <article id="other-text">
69 <a class="other-text-close" href="#">{% trans "Close" %}</a>
70 <div id="other-text-waiter">{% trans "Please wait..." %}</div>
71 <div id="other-text-body" style="display: none;"></div>
73 {% endblock big-pane %}
77 <div id="info" class="box">
81 {% if book.other_versions.exists %}
82 <div class="box" id="other">
83 <h2>{% trans "Other versions of the book" %}</h2>
84 <a class="other-text-close" href="#">{% trans "Close the other version" %}</a>
87 {% for other_version in book.other_versions %}
89 <a class="display-other"
90 data-other="{{ other_version.html_url }}"
91 href="{% url 'book_text' other_version.slug %}">
92 {{ other_version.mini_box_nolink }}
101 <div class="box" id="settings">
102 <h2>{% trans "Settings" %}</h2>
103 <a href="#" class="settings-switch" id="settings-line-numbers"
104 data-setting="always-hide-line-numbers">{% trans "Display line numbers" %}</a><br/>
105 <a href="#" class="settings-switch" id="settings-themes"
106 data-setting="always-hide-themes">{% trans "Display themes" %}</a><br/>
107 <a href="#" class="settings-switch" id="settings-annotations"
108 data-setting="no-annotations">{% trans "Display footnotes" %}</a><br/>
111 <div class="box" id="book-short">
112 {% include 'catalogue/book_short.html' %}
115 <div id="annoy-stubs">
116 {% annoy_banners 'book-text-intermission' %}
118 {% for insert in inserts %}
119 {% with text=insert.choose %}
120 <div class="dynamic-insert{% if text.image %} with-image{% endif %}" style="{% if text.background_color %}background-color: {{ text.background_color }};{% endif %}" data-paragraphs="{{ insert.paragraphs }}">
121 <a href="{% url 'club' %}">
122 <div class="text" style="{% if text.text_color %}color:{{ text.text_color }}{% endif %}">
123 {{ text.text|safe|linebreaks }}
126 <img src="{% thumbnail text.image '120x120' as thumb %}{{ thumb.url }}{% empty %}{{ text.image.url }}{% endthumbnail %}">
133 {% endblock footer %}