15 lines
389 B
HTML
15 lines
389 B
HTML
{% extends 'application.html' %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Delete Session</h1>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
<input type="submit" value="Confirm"> or
|
|
<a href="{% url 'period-detail' object.pk %}">Cancel</a>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|