- Legacy-Id: 2517 Note: SVN reference [2412] has been migrated to Git commit f87a9376b985814435b1e9b8bb5d73a45fd7292d Note: SVN reference [2413] has been migrated to Git commit 6835826cb3d5ad1e1558b828bd9d349d5feffa98 Note: SVN reference [2480] has been migrated to Git commit ec80763835dbaad0c68c3bdaee41fdeb92876897
35 lines
930 B
HTML
35 lines
930 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Ballot writeup and notes for {{ doc }}{% endblock %}
|
|
|
|
{% block morecss %}
|
|
form #id_ballot_writeup {
|
|
width: 700px;
|
|
height: 600px;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Ballot writeup and notes for {{ doc }}</h1>
|
|
|
|
|
|
<form action="" method="POST">
|
|
|
|
<p>(Technical Summary, Working Group Summary, Document Quality,
|
|
Personnel, RFC Editor Note, IRTF Note, IESG Note, IANA Note)</p>
|
|
|
|
<p>This text will be appended to all announcements and messages to
|
|
the IRTF or RFC Editor.</p>
|
|
|
|
{{ ballot_writeup_form.ballot_writeup }}
|
|
|
|
<div class="actions">
|
|
<a href="{{ doc.idinternal.get_absolute_url }}">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 ballot.ballot_issued %}Re-{% endif %}Issue Ballot" />
|
|
</div>
|
|
</form>
|
|
|
|
|
|
{% endblock%}
|