datatracker/ietf/templates/mailinglists/nonwg.html
Rich Salz 68c3e652e0
fix: Clarify non-WG mailing list title (#7189)
Add reference to the non-WG guidelines.
Change the title to make obvious that not implying "no work is done here."

Fixes: #7059
2024-03-20 17:39:30 -05:00

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, are at
<a href="https://www.ietf.org/how/lists/nonwglist-guidelines/">
https://www.ietf.org/how/lists/nonwglist-guidelines/
</a>
</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 %}