{% extends "layout.html" %} {% block content %}

Start nieuwe scrape

{% include "components/url_input.html" %}

{% include "components/registered_books.html" %}

Actieve boeken

{% if books and books|length > 0 %}
{% for book in books %} {% include "components/book_list_item.html" %} {% endfor %}
{% else %}
Geen actieve boeken.
{% endif %}

Live log (globaal)

{# log_view verwacht altijd 'logs' — garandeer list #} {% set logs = logs or [] %} {% include "components/log_view.html" %}
{% endblock %}