generated from coulomb/repo-seed
18 lines
723 B
HTML
18 lines
723 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Los löschen{% endblock %}
|
|
{% block content %}
|
|
<div class="max-w-md mx-auto mt-16">
|
|
<div class="card text-center space-y-4">
|
|
<h1 class="text-lg font-semibold text-slate-800">Los löschen?</h1>
|
|
<p class="text-sm text-slate-600">
|
|
<strong>{{ los }}</strong> und alle zugehörigen Anforderungen werden unwiderruflich gelöscht.
|
|
</p>
|
|
<form method="post" class="flex justify-center gap-3">
|
|
{% csrf_token %}
|
|
<button type="submit" class="btn-primary bg-red-600 hover:bg-red-700">Löschen</button>
|
|
<a href="{% url 'ausschreibungen:lose:detail' ausschreibung.pk los.pk %}" class="btn-ghost">Abbrechen</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|