datatracker/ietf/templates/group/index.html
2022-02-01 16:11:34 +00:00

41 lines
1.4 KiB
HTML

{# bs5ok #}
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static person_filters %}
{% load ietf_filters %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Other RFC streams{% endblock %}
{% block content %}
{% origin %}
<h1>Other RFC streams</h1>
<table class="my-3 table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="stream">Stream</th>
<th data-sort="owner">Owner</th>
<th data-sort="manager">Stream manager</th>
</tr>
</thead>
<tbody>
{% for stream in streams %}
<tr>
<td class="text-nowrap">
<a href="/stream/{{ stream.acronym }}/">{{ stream.acronym }}</a>
</td>
<td>{{ stream.name }}</td>
<td>
{% with stream.get_chair as role %}
{% person_link role.person %}
<span class="badge bg-info">{{ role.name }}</span>
{% endwith %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}