diff --git a/templates/joblog.html b/templates/joblog.html index 509b412..824dea1 100644 --- a/templates/joblog.html +++ b/templates/joblog.html @@ -27,6 +27,8 @@ {% if job.state == "Failed" %} + {% elif job.state == "Withdrawn" %} + {% else %} {% endif %} diff --git a/templates/jobs.html b/templates/jobs.html index 3969c3f..7983b16 100644 --- a/templates/jobs.html +++ b/templates/jobs.html @@ -9,6 +9,8 @@ {% for job in jobs %} {% if job.state == "Failed" %} row='Job #{{job.id}} - {{job.name}}' + {% elif job.state == "Withdrawn" %} + row='Job #{{job.id}} - {{job.name}}' {% else %} row='Job #{{job.id}} - {{job.name}}' {% endif %}