evorepo/templates/todolists/todolist_confirm_delete.html
Dan McGee 8777ccf001 Fix up HTML titles on a lot of pages
We didn't include them on many pages, or the ones we did weren't always
useful. Also try to keep the boilerplate to a minimum so you can see the
important bits in the title. 'Arch Linux - ' comes first in all titles, and
from there it can be filled in with something useful.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-03-01 21:43:52 -06:00

26 lines
664 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - Delete Todo List{% endblock %}
{% block content %}
<div class="greybox">
<h2 class="title">Confirm Delete</h2>
<p>
Are you sure you want to delete this todo list?
</p>
<div class="box">
<h3>{{object.name}}</h3>
<p>
{{object.description}}
</p>
</div>
<br />
<form method="POST">
<input type="submit" value="Yes" />
<button type="reset" value="No"
onclick="document.location='/todos/{{object.id}}/';">No</button>
</form>
</div>
{% endblock %}