datatracker/ietf/templates/wgcharter/ballot_writeupnotes.html
Ole Laursen 41fb923d01 More clean up and fix a bunch of bugs.
- Legacy-Id: 4261
2012-04-05 15:06:22 +00:00

31 lines
802 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">
<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="issue_ballot" value="Save and {% if reissue %}Re-{% endif %}Issue Ballot" />
</div>
</form>
{% endblock%}