{% extends "base.html.jinja" %} {% block title %}Paper Scraper Control Panel{% endblock title %} {% block styles %} {{ super() }} {% endblock styles %} {% block content %}

Paper Scraper Control Panel

Scraper Status
Inactive
Volume Configuration
Schedule Configuration
Weight factor for each hour (lower value = higher scraping rate)
{% for hour in range(24) %} {% set weight = schedule_config.get(hour, 1.0) %} {% set weight_class = "weight-1" %} {% if weight == 0.1 %} {% set weight_class = "weight-0-1" %} {% elif weight == 0.2 %} {% set weight_class = "weight-0-2" %} {% elif weight == 0.5 %} {% set weight_class = "weight-0-5" %} {% elif weight == 0.7 %} {% set weight_class = "weight-0-7" %} {% endif %}
{{ "%02d:00"|format(hour) }}
{% endfor %}
Scraping Activity
Recent Activity
Time Action Status Description
Loading activities...
{% endblock content %} {% block scripts %} {{ super() }} {% endblock scripts %}