From b84c67169078ebb8a8e703014544e3d231353907 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Tue, 22 Jun 2021 20:02:23 +1000 Subject: [PATCH] use bootstrap to style job errors, not direct css --- templates/joblog.html | 4 ++-- templates/jobs.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/joblog.html b/templates/joblog.html index 783cd73..4fd4bbd 100644 --- a/templates/joblog.html +++ b/templates/joblog.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block main_content %} -
+

{{page_title}}

@@ -26,7 +26,7 @@
{% if job.state != "Complete" %} - + {% else %} {% endif %} diff --git a/templates/jobs.html b/templates/jobs.html index 0bbad98..3969c3f 100644 --- a/templates/jobs.html +++ b/templates/jobs.html @@ -8,7 +8,7 @@ {% for job in jobs %} {% if job.state == "Failed" %} - row='Job #{{job.id}} - {{job.name}}' + row='Job #{{job.id}} - {{job.name}}' {% else %} row='Job #{{job.id}} - {{job.name}}' {% endif %}