datatracker/ietf/templates/mailinglists/nonwg.html

41 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static ietf_filters %}
{% load cache %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Other (not WG) email lists{% endblock %}
{% block content %}
{% origin %}
<h1>Other (not Working Group) email lists</h1>
<p>Guidelines for these lists, including how to request a
new one to be created, can be found on the
<a href="https://www.ietf.org/participate/lists/nonwglist-guidelines/">
NonWorking Group email list guidelines
</a> webpage.
</p>
{% cache 900 nonwglisttable %}
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th scope="col" data-sort="name">Name</th>
<th scope="col" data-sort="description">Description</th>
</tr>
</thead>
<tbody>
{% for list in lists %}
<tr>
<td>
<a href="{{ list.info_url }}">{{ list.name.lower }}</a>
</td>
<td>{{ list.description|urlize_ietf_docs }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endcache %}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}