* chore: remove unused setting * feat: initial import of iesg minutes * fix: let the meetings view show older iesg meetings * feat: iesg narrative minutes * feat: import bof coordination call minutes * wip: import commands for iesg appeals and statements * feat: import iesg statements. * feat: import iesg artifacts * feat: many fewer n+1 queries for the group meetings view * fix: restore chain of elifs in views_doc * fix: use self.stdout.write vs print in mgmt commands * fix: use replace instead of astimezone when appropriate * chore: refactor new migrations into one * fix: transcode some old files into utf8 * fix: repair overzealous replace * chore: black * fix: address minro review comments * fix: actually capture transcoding work * fix: handle multiple iesg statements on the same day * fix: better titles * feat: pill badge replaced statements * fix: consolodate source repos to one * feat: liberal markdown for secretariat controlled content * fix: handle (and clean) html narrative minutes * feat: scrub harder * fix: simplify and improve a scrubber * chore: reorder migrations
42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
{% extends "group/group_base.html" %}
|
|
{# Copyright The IETF Trust 2023, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters person_filters textfilters %}
|
|
{% load static %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block group_content %}
|
|
{% origin %}
|
|
<h2 class="my-3">{{group.acronym|upper}} Statements</h2>
|
|
{% if request.user|has_role:"Secretariat" %}
|
|
<div class="buttonlist">
|
|
<a id="start_button"
|
|
class="btn btn-primary"
|
|
href="{% url 'ietf.doc.views_statement.new_statement' %}">
|
|
Start New Statement
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
<table class="my-3 table table-sm table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-1" scope="col" data-sort="date">Date</th>
|
|
<th scope="col" data-sort="statement">Statement</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for statement in statements %}
|
|
<tr>
|
|
<td title="{{ statement.published|date:'Y-m-d H:i:s O' }}">{{ statement.published|date:"Y-m-d" }}</td>
|
|
<td><a href="{% url 'ietf.doc.views_doc.document_main' name=statement.name %}">{{statement.title}}</a>
|
|
{% if statement.status == "replaced" %}<span class="badge rounded-pill text-bg-warning">Replaced</span>{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |