7 lines
461 B
HTML
7 lines
461 B
HTML
{% load i18n %}
|
|
<form action="{% url 'delete_meeting_for_candidate' job.slug candidate.pk meeting.pk %}" method="post">
|
|
{% csrf_token %}
|
|
<p class="text-danger">{% trans "Are you sure you want to delete this meeting? This action is irreversible." %}</p>
|
|
<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>
|
|
</form> |