1
0
Fork 0

fix tests and linting

This commit is contained in:
Hugh Rundle 2023-10-22 17:26:27 +11:00
parent 0a2efeb5aa
commit 07ef12ce8e
No known key found for this signature in database
GPG key ID: A7E35779918253F9
7 changed files with 20 additions and 20 deletions

View file

@ -274,16 +274,17 @@
{% else %}
<td>
<span
{% if import.status == "stopped" or import.status == "failed" %}
class="tag is-danger"
{% elif import.status == "pending" %}
class="tag is-warning"
{% elif import.complete %}
class="tag"
{% else %}
class="tag is-success"
{% endif %}
>{{ import.status }}</span></td>
{% if import.status == "stopped" or import.status == "failed" %}
class="tag is-danger"
{% elif import.status == "pending" %}
class="tag is-warning"
{% elif import.complete %}
class="tag"
{% else %}
class="tag is-success"
{% endif %}
>{{ import.status }}
</span>
</td>
{% endif %}
</tr>