Services
{% for svc in services %}
{% if svc.uptime %}
Uptime: {{ svc.uptime }}
{% endif %}
{% if svc.last_run %}
Last run: {{ format_date(svc.last_run, include_time=True) }}
{% endif %}
{% if svc.next_run %}
Next run: {{ format_date(svc.next_run, include_time=True) }}
{% endif %}
Interval: every {{ svc.interval_seconds }}s
{% for line in svc.log_buffer %}{{ line }}
{% else %}No log entries yet.
{% endfor %}
{% else %}
No services registered.
{% endfor %}
{% endblock %}
{% block extra_js %}
{% endblock %}