21 lines
570 B
HTML
21 lines
570 B
HTML
{% 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>{{ 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 %}
|