Private
Public Access
1
0

adding in-stroke analysis delete

This commit is contained in:
Sander Roosendaal
2022-10-10 19:32:14 +02:00
parent afcb6b56f8
commit 0c9940c1d6
6 changed files with 103 additions and 6 deletions

View File

@@ -0,0 +1,29 @@
{% extends "newbase.html" %}
{% load static %}
{% block title %}In-Stroke Analysis{% endblock %}
{% block main %}
<h1>Confirm Delete</h1>
<p>This will permanently delete the analysis</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" type="submit" value="Confirm">
</form>
</p>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_analytics.html' %}
{% endblock %}