odsreg/cfp/templates/cfpdelete.html
Thierry Carrez 56fdefeccd Initial import
Initial import after cleanup.
Previous history lives in https://code.launchpad.net/~ttx/+junk/odsreg
2012-12-20 16:11:01 +01:00

13 lines
490 B
HTML

{% extends "regform.html" %}
{% block helppage %}
<p>This screen lets you confirm the deletion of a proposal you created.</p>
{% endblock %}
{% block formtitle %}
<h2>Do you really want to delete session '{{proposal.title}}' ?</h2>
<form action="/cfp/delete/{{ proposal.id }}" method="post">
{% endblock %}
{% block formfooter %}
<input id="toggleButton" class="roundedButton" type="submit" value="Yes" />
<a class=roundedButton href="/{{ req.session.lastlist }}">Cancel</A>
{% endblock %}