feat: improve scheduler UI and align fetch to half-hours with tests

Made-with: Cursor
This commit is contained in:
cottongin
2026-04-06 21:42:49 -04:00
parent 2cf44fe642
commit 767285119b
3 changed files with 60 additions and 9 deletions

View File

@@ -21,10 +21,10 @@
<hgroup>
<h3>Scheduler</h3>
<p>
Status: <strong>{{ "Running" if scheduler_status.running else "Stopped" }}</strong>
Status: <strong>{{ "Enabled" if scheduler_status.running else "Disabled" }}</strong>
{% if scheduler_status.rss_fetch %}
· Next fetch: {{ scheduler_status.rss_fetch.next_run }}
· Interval: {{ scheduler_status.rss_fetch.interval_hours }}h
&middot; Next fetch: {{ scheduler_status.rss_fetch.next_run }}
&middot; Interval: {{ scheduler_status.rss_fetch.interval_hours }}h
{% endif %}
</p>
</hgroup>