feat: add comprehensive GitHub workflow and development tools
This commit is contained in:
15
app/templates/stiftung/unterstuetzung_confirm_delete.html
Normal file
15
app/templates/stiftung/unterstuetzung_confirm_delete.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block title %}Unterstützung löschen{% endblock %}
|
||||
{% block content %}
|
||||
<div class="card shadow">
|
||||
<div class="card-body">
|
||||
<h5>Möchten Sie diese Unterstützung wirklich löschen?</h5>
|
||||
<p><strong>{{ obj.destinataer.get_full_name }}</strong>, €{{ obj.betrag|floatformat:2 }}, fällig am {{ obj.faellig_am|date:"d.m.Y" }}</p>
|
||||
<form method="post">{% csrf_token %}
|
||||
<a href="{% url 'stiftung:unterstuetzungen_list' %}" class="btn btn-outline-secondary">Abbrechen</a>
|
||||
<button type="submit" class="btn btn-danger">Löschen</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user