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.html

15 lines
364 B
HTML
Raw Normal View History

2021-09-06 20:34:43 +02:00
{% extends 'tenantbase.html' %}
2021-08-22 20:10:29 +02:00
{% load django_bootstrap5 %}
{% load static %}
{% 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">
</form>{% endblock %}