16 lines
656 B
HTML
16 lines
656 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Preispunkt löschen{% endblock %}
|
|
{% block content %}
|
|
<div class="max-w-md mx-auto">
|
|
<div class="card text-center space-y-4">
|
|
<p class="text-slate-700">Preispunkt <strong>{{ preispunkt.konkrete_leistung }}</strong> wirklich löschen?</p>
|
|
<div class="flex gap-3 justify-center">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button type="submit" class="btn-primary bg-red-600 hover:bg-red-700">Löschen</button>
|
|
</form>
|
|
<a href="{% url 'ausschreibungen:preise:detail' ausschreibung.pk preispunkt.pk %}" class="btn-ghost">Abbrechen</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|