* ci: Update build-base-app.yml workflow * fix: Relabel NomCom to show start year, not range Show just the year that a NomCom started, because showing the start/end years is confusing. Fixes: #3419 * fix: Shwo Nomcoms year convened only Fix the main nomcom index page and the announcement archive page --------- Co-authored-by: Nicolas Giard <github@ngpixel.com> Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters static person_filters %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block title %}NomComs{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>NomComs</h1>
|
|
<table class="table table-sm table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" data-sort="year">Year Convened</th>
|
|
<th scope="col" data-sort="chair">Chair</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for nomcom in nomcom_list|dictsortreversed:"label" %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'ietf.group.views.group_home' acronym=nomcom.acronym %}">{{ nomcom.label }}</a>
|
|
</td>
|
|
<td >
|
|
{% with nomcom.get_chair as role %}
|
|
{% person_link role.person %}
|
|
{% endwith %}
|
|
</td>
|
|
<td>
|
|
{% if nomcom.ann_url %}
|
|
<a class="btn btn-primary btn-sm float-end ms-1"
|
|
href="{{ nomcom.ann_url }}">Announcements</a>
|
|
{% endif %}
|
|
{% if nomcom.url %}<a class="btn btn-primary btn-sm float-end ms-1" href="{{ nomcom.url }}">Pages</a>{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |