generated from coulomb/repo-seed
We are building, workplan now registered with statehub
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{% load vergabe_tags %}
|
||||
<div id="status-widget-{{ ausschreibung.pk }}"
|
||||
class="flex items-center gap-2">
|
||||
{% status_badge ausschreibung.status ausschreibung.get_status_display %}
|
||||
<select name="status"
|
||||
hx-post="{% url 'ausschreibungen:status' ausschreibung.pk %}"
|
||||
hx-target="#status-widget-{{ ausschreibung.pk }}"
|
||||
hx-swap="outerHTML"
|
||||
hx-trigger="change"
|
||||
class="form-input text-xs py-0.5 h-7 w-auto">
|
||||
{% for val, label in ausschreibung.STATUS_CHOICES %}
|
||||
<option value="{{ val }}" {% if val == ausschreibung.status %}selected{% endif %}>{{ label }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
Reference in New Issue
Block a user