{% extends "base.html" %} {% block title %}{{ novel.title }} - NDL Library{% endblock %} {% block content %}

Library ID {{ novel_id }}

{{ novel.title }}

{{ novel.status }}
Author {{ novel.author }}
Source rule {{ novel.source_rule_id }}
Fetched {{ novel.fetched_at.strftime("%Y-%m-%d %H:%M") }}
{% if novel.source_url %}
Source URL {{ novel.source_url }}
{% endif %} {% if novel.summary %}
Summary {{ novel.summary }}
{% endif %}
{% for chapter in novel.chapters %} {% endfor %}
Index Title Words
{{ chapter.index }} {{ chapter.title }} {{ chapter.word_count }}
{% endblock %}