41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
{% 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/">
|
||
Non–Working 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 %} |