Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-27 07:41:44

0001 {% extends "base.html" %}
0002 
0003 {% block title %}Confirm Delete{% endblock %}
0004 
0005 {% block content %}
0006 <h2>Are you sure you want to delete "{{ item.name }}"?</h2>
0007 <form method="post">
0008     {% csrf_token %}
0009     <button type="submit">Confirm</button>
0010     <a href="{% url 'monitor_app:index' %}">Cancel</a>
0011 </form>
0012 {% endblock %}