forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend_ballot_comment.html
More file actions
44 lines (44 loc) · 1.68 KB
/
send_ballot_comment.html
File metadata and controls
44 lines (44 loc) · 1.68 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% load ietf_filters %}
{% block title %}Send ballot position for {{ balloter }} on {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Send ballot position for {{ balloter }}
<br>
<small class="text-muted">{{ doc }}</small>
</h1>
<form class="mt-3" method="post">
{% csrf_token %}
<div class="mb-3">
<label class="form-label">From</label>
<input class="form-control" type="text" placeholder="{{ frm }}" disabled>
</div>
<div class="mb-3">
<label class="form-label">To</label>
<input class="form-control" type="text" placeholder="{{ to }}" disabled>
</div>
{% bootstrap_form cc_select_form %}
<div class="mb-3">
<label class="form-label">Additional Cc Addresses</label>
<input class="form-control" name="extra_cc">
<div class="form-text">Separate email addresses with commas.</div>
</div>
<div class="mb-3">
<label class="form-label">Subject</label>
<input class="form-control" type="text" placeholder="{{ subject }}" disabled>
</div>
<div class="mb-3">
<label class="form-label">Body</label>
<pre class="border p-3">{{ body|maybewordwrap }}</pre>
</div>
<button type="submit" class="btn btn-danger">Send</button>
<a class="btn btn-secondary float-end"
href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">
Back
</a>
</form>
{% endblock %}