Private
Public Access
1
0

basic views (not complete)

This commit is contained in:
Sander Roosendaal
2019-08-16 14:52:42 +02:00
parent b7aa7f863c
commit de6d498717
6 changed files with 206 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
{% 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 %}