30 lines
574 B
HTML
30 lines
574 B
HTML
{% extends "newbase.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Planned Session{% endblock %}
|
|
|
|
{% block main %}
|
|
<h1>Confirm Delete</h1>
|
|
<p>This will permanently delete the alert</p>
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<p>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete <em>{{ object }}</em>?</p>
|
|
<input class="button red" type="submit" value="Confirm">
|
|
</form>
|
|
</p>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_analytics.html' %}
|
|
{% endblock %}
|