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.
14 lines
538 B
HTML
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 %}
|