{% extends "base.html" %} {% block title %}{{ novel.title }} - NDL Library{% endblock %} {% block content %} Library 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 %} Index Title Words {% for chapter in novel.chapters %} {{ chapter.index }} {{ chapter.title }} {{ chapter.word_count }} {% endfor %} {% endblock %}
Library ID {{ novel_id }}