datatracker/ietf/templates/doc/irsg_ballot_status.html
2022-11-23 10:01:02 -06:00

38 lines
1.2 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2019, All Rights Reserved #}
{% load origin static %}
{% load ballot_icon %}
{% load ietf_filters %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}IRSG ballot status{% endblock %}
{% block content %}
{% origin %}
<h1>IRSG ballot status</h1>
{% if docs %}
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th scope="col" data-sort="doc">Document</th>
<th scope="col" data-sort="status">Status</th>
</tr>
</thead>
<tbody>
{% for doc in docs %}
<tr>
<td>{{ doc.displayname_with_link }}</td>
{% include "doc/search/status_columns.html" %}
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p class="alert alert-info my-3">
No open IRSG ballots.
</p>
{% endif %}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}