datatracker/ietf/templates/liaisons/liaison_table.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

39 lines
1.6 KiB
HTML

{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% load ietf_filters %}
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="date">Date</th>
<th data-sort="from">From</th>
<th data-sort="to">To</th>
<th data-sort="date">Deadline</th>
<th data-sort="title">Title</th>
</tr>
</thead>
{% if liaisons %}
<tbody>
{% for liaison in liaisons %}
<tr>
<td class="text-nowrap">{{ liaison.sort_date|date:"Y-m-d" }}</td>
<td class="liaison-group-col">{{ liaison.from_groups_display }}</td>
<td class="liaison-group-col">{{ liaison.to_groups_display }}</td>
<td class="text-nowrap">
{{ liaison.deadline|default:"-"|date:"Y-m-d" }}
{% if liaison.deadline and not liaison.action_taken %}
<br>
<span class="badge
{% if liaison.is_outgoing %}
bg-warning
{% else %}
bg-info
{% endif %}">Action needed</span>
{% endif %}
</td>
<td>
<a href="{% url "ietf.liaisons.views.liaison_detail" object_id=liaison.pk %}">{{ liaison.title }}</a>
</td>
</tr>
{% endfor %}
</tbody>
{% endif %}
</table>