20 lines
621 B
HTML
20 lines
621 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 class="text-muted"><a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc }}</a></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 %}
|
|
|
|
{% endblock %}
|