{% extends "base.html" %} {% block title_suffix %} - System{% endblock %} {% block content %}

Daemon

{% if daemon_running %} Running (PID: {{ daemon_pid }}){% if loop_settings.loop_paused %} - PAUSED{% endif %} {% else %} Stopped {% endif %}

{% if daemon_running %} The daemon is processing requests. Use bw loop stop to stop it. {% else %} Start the daemon with bw loop start {% endif %}

Loop Controls

{% if loop_settings.loop_paused %}
{% else %}
{% endif %}

Projects

{{ project_count }}

Requests

{{ request_count }}

Requests by Status

{% for status, count in status_counts.items() %} {% endfor %} {% if not status_counts %} {% endif %}
Status Count
{{ STATUS_NAMES.get(status, status) }} {{ count }}
No requests

Requests by Phase

{% for phase, count in phase_counts.items() %} {% endfor %} {% if not phase_counts %} {% endif %}
Phase Count
{{ PHASE_NAMES.get(phase, phase) }} {{ count }}
No requests
{% endblock %}