37 lines
854 B
HTML
37 lines
854 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}Other RFC streams{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Other RFC streams</h1>
|
|
|
|
<table class="table table-condensed table-striped">
|
|
<thead>
|
|
<th>Stream</th>
|
|
<th>Owner</th>
|
|
<th>Stream manager</th>
|
|
</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 %}
|
|
<a href="mailto:{{role.person.email_address}}">{{role.person}}</a>
|
|
({{role.name}})
|
|
{% endwith %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
|