{% extends "bookkeeper/base.html" %} {% load static %} {% block title %}{{ book.title }} — Reader{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% endblock %} {% block extra_js %} {# epub.js only for EPUB books without extracted chapters (fixed-layout fallback) #} {% if book.format == 'epub' and not has_chapters %} {% endif %} {# PDF.js for PDF rendering #} {% if book.format == 'pdf' %} {% endif %} {# JSZip for CBZ rendering #} {% if book.format == 'cbz' %} {% endif %} {% endblock %}