1
0
Fork 0

Guided tour of book page

This is intended to be one of the earlier pages in the tour. It should show users the concept of reading status, editions, and other useful points.
This commit is contained in:
Hugh Rundle 2022-06-19 14:06:36 +10:00
parent ff37b77be9
commit bc4a1c6c41
2 changed files with 154 additions and 2 deletions

View file

@ -210,7 +210,7 @@
{% with work=book.parent_work %}
<p>
<a href="{{ work.local_path }}/editions">
<a href="{{ work.local_path }}/editions" id="other-editions-link">
{% blocktrans trimmed count counter=work.editions.count with count=work.editions.count|intcomma %}
{{ count }} edition
{% plural %}
@ -392,7 +392,7 @@
</section>
{% endif %}
<section class="content block">
<section class="content block" id="book-file-links">
{% include "book/file_links/links.html" %}
</section>
</div>
@ -405,4 +405,7 @@
{% block scripts %}
<script src="{% static "js/tabs.js" %}?v={{ js_cache }}"></script>
<script src="{% static "js/autocomplete.js" %}?v={{ js_cache }}"></script>
{% if user.show_guided_tour %}
{% include 'guided_tour/book.html' %}
{% endif %}
{% endblock %}