diff --git a/pulpito/templates/run.html b/pulpito/templates/run.html deleted file mode 100644 index 86063a1..0000000 --- a/pulpito/templates/run.html +++ /dev/null @@ -1,91 +0,0 @@ -{% extends "layout.html" %} - -{% block body %} - -
-
- - -
- {% if run.results.queued %} - - {% endif %} - {% if run.results.fail %} - - {% endif %} - {% if run.results.dead %} - - {% endif %} - {% if run.results.running %} - - {% endif %} - {% if results.waiting %} - - {% endif %} - {% if run.results.unknown %} - - {% endif %} - {% if run.results.pass %} - - {% endif %} - -
- - -
- {% set jobs = run.jobs %} - {% include "run_jobs_table.html" %} -
-
-
-{% endblock %} - -