{% extends "base.html" %} {% block title %}{{ jobset.name }} Jobs - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ jobset.name }}

{% if show_inactive %} Hide inactive jobs {% else %} Show inactive jobs {% endif %}
{% if columns.is_empty() %}
No evaluations yet
Job status history will appear after this jobset evaluates.
{% else if rows.is_empty() %}
No active jobs
Use "Show inactive jobs" to include jobs missing from the latest evaluation.
{% else %}
{% for column in columns %} {% endfor %} {% for row in rows %} {% for cell in row.cells %} {% endfor %} {% endfor %}
Job {{ column.label }}
{{ row.job_name }} {% if !row.is_active %}Inactive{% endif %} {% if !cell.href.is_empty() %} {{ cell.status_text }} {% else %} {{ cell.status_text }} {% endif %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}