kaauh_ats/templates/meetings/delete_meeting_form.html
2025-10-19 17:23:06 +03:00

10 lines
518 B
HTML

{% load i18n %}
<form action="{{ delete_url }}" method="post" class="d-flex flex-column gap-2 py-2 px-4">
{% csrf_token %}
<p class="text-danger">{% trans "Are you sure you want to delete this meeting? This action is irreversible." %}</p>
<div class="d-flex gap-2 justify-content-end">
<button type="submit" class="btn btn-danger">{% trans "Delete Meeting" %}</button>
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">{% trans "Cancel" %}</button>
</div>
</form>