{% extends "admin/layout.html" %} {% block admin_title %}{{ job.name_str() }}{% endblock admin_title %} {% block content %}

{{ job.name_str() }}

{{ t.jobs_description }}{{ job.description_str() }}
{{ t.jobs_cron }}{{ job.cron_expression_str() }}
{{ t.jobs_enabled }}{% if job.enabled() %}✅{% else %}❌{% endif %}
{{ t.jobs_last_run }}{{ job.last_run_at_str() }}
{{ t.jobs_next_run }}{{ job.next_run_at_str() }}
{% if job.name_str() != "metadata_backfill" %}
{% endif %} {% if job.name_str() != "metadata_backfill" %}
{% if job.enabled() %} {% else %} {% endif %}
{% endif %}
{% if job.name_str() == "metadata_backfill" %}

{{ t.jobs_metadata_backfill_options }}

{{ t.jobs_metadata_backfill_fields }}
{% endif %} {% if job.name_str() != "metadata_backfill" %}

{{ t.jobs_cron }}

{{ t.jobs_cron_help }}

{% endif %}

{{ t.jobs_run_history }}

{% if runs.is_empty() %}

No runs yet.

{% else %} {% for run in runs %} {% endfor %}
ID {{ t.jobs_run_status }} {{ t.jobs_run_started }} {{ t.jobs_run_duration }} {{ t.jobs_run_trigger }} {{ t.jobs_actions }}
{{ run.id_val() }} {{ run.status_str() }} {{ run.started_at_str() }} {{ run.duration_display() }} {{ run.trigger_str() }} {{ t.reviews_view }}
{% endif %}

← {{ t.jobs_back_to_list }}

{% endblock content %}