diff --git a/assets/styles/app.css b/assets/styles/app.css index bc8a4a7..caa530d 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -12,3 +12,15 @@ table tbody tr td:first-child { .logs-lines { white-space: nowrap; } + +.task-status_running { + background-color: blue; +} + +.task-status_success { + background-color: green; +} + +.task-status_failed { + background-color: red; +} diff --git a/src/templates/pages/list_task_runs.html b/src/templates/pages/list_task_runs.html index 6b71775..f839283 100644 --- a/src/templates/pages/list_task_runs.html +++ b/src/templates/pages/list_task_runs.html @@ -1,6 +1,11 @@ {% extends "layouts/base.html" %} {% block body %}
+ No tasks runs to show +
+ {% else %}- {{ task_run.status }} + + {{ task_run.status }} + | Details @@ -29,4 +36,5 @@ {% endfor %} |
Exit code is {{ run.exit_code }}
{% for line in logs_lines %} -{% endblock %}{{- line.content -}}+{{- line.content -}}{% endfor %}