Skip to content
Snippets Groups Projects
Commit a785fe73 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

add quality colors in validation view (requested)

parent a61c1aa9
No related branches found
No related tags found
No related merge requests found
Pipeline #41811 passed
......@@ -123,4 +123,17 @@ p.title {
.form-flex {
display: flex;
}
.good {
color: green;
font-weight: bold;
}
.moderate {
color: orange;
font-weight: bold;
}
.poor {
color: red;
font-weight: bold;
}
\ No newline at end of file
......@@ -123,4 +123,17 @@ p.title {
.form-flex {
display: flex;
}
.good {
color: green;
font-weight: bold;
}
.moderate {
color: orange;
font-weight: bold;
}
.poor {
color: red;
font-weight: bold;
}
\ No newline at end of file
......@@ -61,7 +61,7 @@
{% endif %}
{% endif %}
</td>
<td>{{ task.quality|default_if_none:"-" }}</td>
<td class="{{ task.quality }}">{{ task.quality|default_if_none:"-" }}</td>
<td>{% include "taskdatabase/validation/validation_buttons.html" %}</td>
</tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment