{% extends "ops/base.html" %}
{% block content %}
Songs
Download Stats
| Total Songs | {{ download_stats.total_songs }} |
| Downloaded Songs | {{ download_stats.downloaded_songs }} |
| Local Files | {{ download_stats.local_file_locations }} |
Active Workers
| Worker |
Status |
Stage |
Current Song / Playlist |
{% for worker in workers %}
| {{ worker.worker_name }} |
{{ worker.status }} |
{{ worker.stage_type or "-" }} |
{{ worker.display_text or "-" }} |
{% else %}
| No active workers. |
{% endfor %}
Running Items
| Job |
Worker |
Stage |
Item |
{% for item in running_items %}
| {{ item.job_run_id }} |
{{ item.worker_name or "-" }} |
{{ item.stage_type }} |
{{ item.display_name }} |
{% else %}
| No running items. |
{% endfor %}
Song Catalog
| ID |
Platform |
Remote ID |
Name |
Singers |
Updated |
{% for song in songs %}
| {{ song.id }} |
{{ song.platform }} |
{{ song.remote_song_id }} |
{{ song.name }} |
{{ song.singers or "-" }} |
{{ song.updated_at }} |
{% else %}
| No songs. |
{% endfor %}
{% endblock %}