blob: dffe9008534d421d1067ff4a81af945e4f5e797d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends 'base.html' %}
{% block title %}
{{task.title}}
{% endblock %}
{% block content %}
Are you sure you want to delete the task. This action cannot be undone.<br />
<form action="" method="post">
Reason: <input type="text" name="reason">
<input value="Delete" type="submit">
</form>
{% endblock %}
|