21 lines
845 B
HTML
21 lines
845 B
HTML
{% 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 %}
|