This commit is contained in:
Vivek P Prakash
2025-11-27 11:53:46 +05:30
commit aa40080012
50 changed files with 1135 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{% extends 'base.html' %}
{% block content %}
<h3>Delete Event</h3>
<p>Are you sure you want to delete <strong>{{ object.name }}</strong>?</p>
<form method="post">{% csrf_token %}<button class="btn btn-danger">Yes, delete</button>
<a class="btn btn-secondary" href="{% url 'events:event_list' %}">Cancel</a></form>
{% endblock %}