feat: status 'draft' for assignments

This commit is contained in:
Björn Fromme
2024-01-31 19:35:16 +01:00
parent d735996d7d
commit b328ebd91b
5 changed files with 15 additions and 1 deletions
@@ -98,6 +98,8 @@
<span>{{ assignment.validApplications|length }}/{{ assignment.availableDispositions - assignment.dispositions|length }}</span>
{% if assignment.status == 'closed' %}
{{ icon('locked', 'w-4 h-4 text-red-500') }}
{% elseif assignment.status == 'draft' %}
{{ icon('hourglass', 'w-4 h-4 text-yellow-500') }}
{% else %}
{{ icon('unlocked', 'w-4 h-4') }}
{% endif %}