Files
web2.0-backend/members/templates/application_delete_confirm.html
T
2018-01-28 20:59:15 +02:00

25 lines
666 B
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "members:base.html" %}
{% load i18n %}
{% load bootstrap3 %}
{% block content %}
<div>
<div>
<h3>{% trans "Are you sure you want to delete this application?" %}</h3>
</div>
<div>
<table class="table readonly" >
{{ form }}
</table>
<form name="applicationForm" action="/members/delete_application" method="post" class="form">{% csrf_token %}
<input type="hidden" name="id" value="{{ application_id }}">
<button type="submit" class="btn btn-danger">
{% trans "Yes, I'm sure" %}
</button>
</form>
</div>
</div>
{% endblock content %}