31 lines
830 B
HTML
31 lines
830 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Ballot writeup and notes for {{ charter.chartered_group }}{% endblock %}
|
|
|
|
{% block morecss %}
|
|
form #id_ballot_writeup {
|
|
width: 700px;
|
|
height: 600px;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Ballot writeup and notes for {{ charter.chartered_group }}</h1>
|
|
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
|
|
<p>(Working Group Summary, Personnel, IAB Note, IESG Note, IANA Note)</p>
|
|
|
|
{{ ballot_writeup_form.ballot_writeup }}
|
|
|
|
<div class="actions">
|
|
<a href="{% url "doc_writeup" name=charter.name %}">Back</a>
|
|
<input type="submit" name="save_ballot_writeup" value="Save Ballot Writeup" />
|
|
<input style="margin-left: 8px" type="submit" name="send_ballot" value="Save and {% if reissue %}Re-{% endif %}Send Ballot to the IESG" />
|
|
</div>
|
|
</form>
|
|
|
|
|
|
{% endblock%}
|