evorepo/templates/todolists/todolist_confirm_delete.html
Dan McGee b3059dd3e8 Remove action when submitting to same URL
It looks like the `action="."` business was screwing up some browsers,
notably lynx and links. We don't need it as the default is to submit to the
same page anyway, so kill this gunk and see if it fixes a login CSRF issue.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-06-11 17:29:46 -05:00

23 lines
560 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - Delete Todo List: {{object.name}}{% endblock %}
{% block content %}
<div id="dev-todo-delete" class="box">
<h2>Delete Todo List: {{object.name}}</h2>
<p>You are about to delete the following todo list:</p>
<blockquote>
<p><strong>{{object.name}}:</strong> {{object.description}}</p>
</blockquote>
<p>Are you sure?</p>
<form id="delete-todo-form" method="post">{% csrf_token %}
<p><input type="submit" value="Delete" /></p>
</form>
</div>
{% endblock %}