forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathballot_issued.html
More file actions
28 lines (28 loc) · 868 Bytes
/
ballot_issued.html
File metadata and controls
28 lines (28 loc) · 868 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Ballot issued for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Ballot issued
<br>
<small class="text-muted">{{ doc }}</small>
</h1>
<p>
Ballot for
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc }}</a>
has been sent out.
</p>
{% if doc.telechat_date %}
<p>
The document is currently on the <b>{{ doc.telechat_date }}</b> telechat agenda.
</p>
{% else %}
<p>
The document is not on any telechat agenda.
</p>
{% endif %}
<a class="btn btn-secondary"
href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">Back</a>
{% endblock %}