20 lines
454 B
HTML
20 lines
454 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Ballot for {{ doc }} issued{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Ballot for {{ doc }} issued</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 %}
|
|
|
|
<div class="actions">
|
|
<a href="{{ back_url }}">Back to document</a>
|
|
</div>
|
|
{% endblock %}
|