
Initial import after cleanup. Previous history lives in https://code.launchpad.net/~ttx/+junk/odsreg
13 lines
490 B
HTML
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 %}
|