31 lines
560 B
HTML
31 lines
560 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Rowsandall Training Plans{% endblock %}
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<style>
|
|
#mypointer {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
|
|
<div class="grid_12 alpha">
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete <i>{{ object }}</i>?</p>
|
|
<div id="formbutton" class="grid_1 prefix_2">
|
|
<input class="button red" type="submit" value="Confirm">
|
|
</div>
|
|
</form>
|
|
|
|
|
|
</div>
|
|
{% endblock %}
|