odsreg/cfp/templates/cfpswitch.html
Thierry Carrez f91c04df5b Make event name configurable
Event name is now configurable in settings.py. Uses the render()
shortcut (RequestContext) and a new context processor to pass event
to all templates.
2013-01-03 17:45:55 +01:00

14 lines
538 B
HTML

{% extends "regform.html" %}
{% block helppage %}
<p>This screen lets you change the topic for a proposed session.</p>
<p>The status for that session will be set back to <i>Unreviewed</i>.</p>
{% endblock %}
{% block formtitle %}
<h2>Switch topic for proposed session</h2>
<form action="/cfp/switch/{{ proposal.id }}" method="post">
{% endblock %}
{% block formfooter %}
<input id="toggleButton" class="roundedButton" type="submit" value="Switch" />
<a class=roundedButton href="/{{ request.session.lastlist }}">Cancel</A>
{% endblock %}