f91c04df5b
Event name is now configurable in settings.py. Uses the render() shortcut (RequestContext) and a new context processor to pass event to all templates.
13 lines
494 B
HTML
13 lines
494 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="/{{ request.session.lastlist }}">Cancel</A>
|
|
{% endblock %}
|