We are building, workplan now registered with statehub

This commit is contained in:
tegwick 2026-05-08 17:03:11 +02:00
parent 14b0bc6d01
commit f202b71c75
37 changed files with 2036 additions and 22 deletions

View file

@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block title %}Aufgabe erstellen{% endblock %}
{% block content %}
<div class="max-w-md mx-auto mt-16">
<div class="card space-y-4">
<h1 class="text-lg font-semibold text-slate-800">Aufgabe aus Anforderung erstellen?</h1>
<p class="text-sm text-slate-600">
Eine neue Aufgabe vom Typ <strong>Fachlich</strong> wird erstellt:
</p>
<p class="text-sm font-medium text-slate-800 bg-slate-50 rounded p-3">
Klärung: {{ anforderung.titel|truncatechars:200 }}
</p>
<form method="post" class="flex gap-3">
{% csrf_token %}
<button type="submit" class="btn-primary">Aufgabe erstellen</button>
<a href="{% url 'ausschreibungen:lose:anforderung_detail' ausschreibung.pk anforderung.pk %}"
class="btn-ghost">Abbrechen</a>
</form>
</div>
</div>
{% endblock %}