Private
Public Access
1
0
Files
rowsandall/rowers/templates/trainingplan_delete.html

33 lines
724 B
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Rowsandall Training Plans{% endblock %}
{% block scripts %}
{% endblock %}
{% block main %}
<form action="" method="post">
{% csrf_token %}
<p>Are you sure you want to delete <em>{{ object }}</em>?</p>
<p>
<input type="checkbox" name="delete_sessions" value="1"> Delete all planned sessions linked to the plan
</p>
<p>
<input type="checkbox" name="delete_all_sessions" value="1">Delete all planned sessions in the plan time frame
</p>
<p>
<input class="button red" type="submit" value="Confirm">
</p>
</form>
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}