Conflicts: ietf/doc/templatetags/ietf_filters.py ietf/doc/views_charter.py ietf/templates/doc/charter/edit_notify.html ietf/templates/doc/charter/edit_telechat_date.html ietf/templates/doc/document_ballot_content.html ietf/templates/doc/document_history.html ietf/templates/doc/edit_notify.html ietf/templates/doc/edit_telechat_date.html ietf/templates/doc/notify.html ietf/templates/group/concluded_groups.html - Legacy-Id: 8429
18 lines
462 B
HTML
18 lines
462 B
HTML
{% extends "ietf.html" %}
|
|
|
|
{% block title %}Ballot issued for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Ballot issued<br><small>{{ doc }}</small></h1>
|
|
|
|
<p>Ballot has been sent out.</p>
|
|
|
|
{% if doc.telechat_date %}
|
|
<p>The document is currently on the {{ doc.telechat_date }} telechat agenda.</p>
|
|
{% else %}
|
|
<p>The document is not on any telechat agenda.</p>
|
|
{% endif %}
|
|
|
|
<a class="btn btn-default pull-right" href="{{ back_url }}">Back</a>
|
|
{% endblock %}
|