datatracker/ietf/templates/mailinglists/nonwg.html
Lars Eggert cf629a42ad And more fixes.
- Legacy-Id: 19877
2022-01-25 10:14:25 +00:00

36 lines
1.1 KiB
HTML

{# bs5ok #}
{% 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 %}Non-Working Group email lists{% endblock %}
{% block content %}
{% origin %}
<h1>Non-Working Group email lists</h1>
{% cache 900 nonwglisttable %}
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="name">Name</th>
<th data-sort="description">Description</th>
</tr>
</thead>
<tbody>
{% for list in lists %}
<tr>
<td class="text-nowrap">
<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 %}