{% extends "base.html" %} {% block title %}{% if source %}{{ source.title }}{% else %}Book not found{% endif %}{% endblock %} {% block content %} {% if source %}

{{ source.title }}

{{ source.author or "Unknown author" }}

File
{{ source.file_path }}
Chapters
{{ chapter_count }}
Chunks
{{ chunk_count }}
{% else %}

Book not found

{% endif %} {% endblock %}