80f33dde89
Replace reviewers and proposer notes by a set of comments that can be posted on a proposal.
17 lines
802 B
HTML
17 lines
802 B
HTML
{% extends "regform.html" %}
|
|
{% block helppage %}
|
|
<p>This screen lets you change the details of a proposed session.</p>
|
|
<p>Note that you cannot change the topic you proposed your session in. You'll have to ask the topic lead to redirect your suggestion to another topic.</p>
|
|
{% endblock %}
|
|
{% block formtitle %}
|
|
<h2>Edit proposed {{proposal.topic.name}} session</h2>
|
|
<form action="/cfp/edit/{{ proposal.id }}" method="post">
|
|
{% endblock %}
|
|
{% block formfooter %}
|
|
<input id="toggleButton" class="roundedButton" type="submit" value="Modify" />
|
|
{% if proposal.proposer == user and proposal.status != 'A' and proposal.status != 'S' %}
|
|
<a class=roundedButton href="/cfp/delete/{{ proposal.id }}">Delete</A>
|
|
{% endif %}
|
|
<a class=roundedButton href="/{{ request.session.lastlist }}">Cancel</A>
|
|
{% endblock %}
|