datatracker/ietf/templates/doc/irsg_ballot_status.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

34 lines
1 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>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="doc">Document</th>
<th data-sort="status">Status</th>
</tr>
</thead>
{% if docs %}
<tbody>
{% for doc in docs %}
<tr>
<td>{{ doc.displayname_with_link }}</td>
{% include "doc/search/status_columns.html" %}
</tr>
{% endfor %}
</tbody>
{% endif %}
</table>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}