1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/templates/common/confirm_delete.jinja

13 lines
319 B
Django/Jinja

{% extends 'tenantbase.jinja' %}
{% block heading %}
<h1>Delete Object</h1>
{% 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">
</form>
{% endblock %}