forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathballot_writeupnotes.html
More file actions
29 lines (21 loc) · 1020 Bytes
/
ballot_writeupnotes.html
File metadata and controls
29 lines (21 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Ballot writeup and notes for {{ charter.chartered_group }}{% endblock %}
{% block content %}
{% origin %}
<h1>Ballot writeup and notes<br><small>{{ charter.chartered_group }}</small></h1>
<form method="post">
{% csrf_token %}
{% bootstrap_form ballot_writeup_form %}
<div class="help-block">
Working group summary, personnel, IAB note, IESG note, IANA note.
</div>
{% buttons %}
<button type="submit" class="btn btn-primary" name="save_ballot_writeup" value="Save Ballot Writeup">Save</button>
<button type="submit" class="btn btn-warning" name="send_ballot" value="Save and Re-Issue Ballot">Save & {% if ballot_issued %}re-{% endif %}issue ballot</button>
<a class="btn btn-default pull-right" href="{% url 'ietf.doc.views_doc.document_writeup' name=charter.name %}">Back</a>
{% endbuttons %}
</form>
{% endblock%}