fix: streamline status column in assignment list view

This commit is contained in:
Björn Fromme
2024-03-01 12:44:17 +01:00
parent 92fcada1da
commit a4a3f43df9
@@ -66,7 +66,10 @@
<td> <td>
<div class="flex flex-col items-center space-y-2"> <div class="flex flex-col items-center space-y-2">
{% if assignment.status == 'draft' %} {% if assignment.status == 'draft' %}
{{ icon('hourglass', 'w-4 h-4') }} <svg viewBox="0 0 5 5" class="h-4 w-4 fill-current text-gray-100">
<circle cx="3" cy="3" r="2" />
</svg>
{{ icon('edit', 'w-4 h-4') }}
{% else %} {% else %}
{% if assignment.staffed %} {% if assignment.staffed %}
<svg viewBox="0 0 5 5" class="h-4 w-4 fill-current text-green-500"> <svg viewBox="0 0 5 5" class="h-4 w-4 fill-current text-green-500">