1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-20 16:53:44 +02:00
RPGnotes/templates/common/confirm_delete.jinja

14 lines
319 B
Text
Raw Normal View History

2021-10-15 21:47:49 +02:00
{% extends 'tenantbase.jinja' %}
2021-08-22 20:10:29 +02:00
{% block heading %}
2021-08-28 19:52:07 +02:00
<h1>Delete Object</h1>
2021-08-22 20:10:29 +02:00
{% endblock %}
{% block content %}
<form method="post">{% csrf_token %}
<p>Are you sure you want to delete "{{ object }}"?</p>
<input class="btn btn-primary" type="submit" value="Confirm">
2021-10-15 21:47:49 +02:00
</form>
{% endblock %}