* feat: support iab and iesg statements. Import iab statements. (#5895) * feat: infrastructure for statements doctype * chore: basic test framework * feat: basic statement document view * feat: show replaced statements * chore: black * fix: state help for statements * fix: cleanout non-relevant email expansions * feat: import iab statements, provide group statements tab * fix: guard against running import twice * feat: build redirect csv for iab statements * fix: set document state on import * feat: show published date on main doc view * feat: handle pdf statements * feat: create new and update statements * chore: copyright block updates * chore: remove flakes * chore: black * feat: add edit/new buttons for the secretariat * fix: address PR #5895 review comments * fix: pin pydantic until inflect catches up (#5901) (#5902) * chore: re-un-pin pydantic
40 lines
1.4 KiB
HTML
40 lines
1.4 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></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |