{% extends "base.html" %}
{% block title %}dudamel — jobs{% endblock %}
{% block content %}
Registered jobs
| Job | Next fire |
{% for job in jobs %}
| {{ job.id }} |
{% if job.next_run_time %}{{ job.next_run_time.strftime('%Y-%m-%d %H:%M:%S %Z') }}{% else %}—{% endif %} |
{% else %}
| No jobs registered. |
{% endfor %}
Recent runs
| When | Job | Status | Detail |
{% for run in runs %}
| {{ run.started_at.strftime('%Y-%m-%d %H:%M:%S') }} |
{{ run.job_id }} |
{{ run.status }} |
{{ run.detail or '' }} |
{% else %}
| No runs recorded yet. |
{% endfor %}
{% endblock %}