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

Local SQLite Library

{{ summaries|length }} saved {{ "novel" if summaries|length == 1 else "novels" }}

{% if summaries %} {% for novel in summaries %} {% endfor %}
ID Title Author Status Chapters Fetched
{{ novel.id }} {{ novel.title }} {{ novel.author }} {{ novel.status }} {{ novel.chapter_count }} {{ novel.fetched_at.strftime("%Y-%m-%d %H:%M") }}
{% else %}

No saved novels

Use the download form above to fetch a rule-matched source. Successful downloads land here when Save is enabled.

{% endif %}
{% endblock %}