{% extends "data_explorer/table_entries_base.html" %} {% block table_headers %} {% table_header "id" "ID" min_width=150 %} {% table_header "status" min_width=150 %} {% table_header "worker" min_width=150 %} {% table_header "tags" min_width=150 %} {% table_header "command_not_found_failures" "CNF Failures" min_width=100 %} {% endblock %} {% block table_rows %} {% foreign_key_link entry "id" truncate_chars=10 %} {% if entry.status == "P" %} {% status_bar "Pending" "secondary" %} {% elif entry.status == "R" %} {% status_bar "Running" "primary" %} {% elif entry.status == "C" %} {% status_bar "Cancelled" "warning" %} {% elif entry.status == "E" %} {% status_bar "Errored" "danger" %} {% elif entry.status == "F" %} {% status_bar "Finished" "success" %} {% endif %} {% if entry.worker %} {% foreign_key_link entry.worker %} {% else %} - {% endif %} {% for tag in entry.tags %} {{ tag }} {% empty %} - {% endfor %} {{ entry.command_not_found_failures }} {% endblock %}