More HTML fixes. - Legacy-Id: 9787 Note: SVN reference [9766] has been migrated to Git commit 77f555bdbdfa653e4b5a0589ead9eda6632f10d7
40 lines
998 B
HTML
40 lines
998 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}RFC status changes{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>RFC status changes</h1>
|
|
|
|
{% if user|has_role:"Area Director,Secretariat" %}
|
|
<p><a class="btn btn-default" href="{% url "start_rfc_status_change" name='' %}">New RFC status change</a></p>
|
|
{% endif %}
|
|
|
|
{% regroup docs by get_state as state_groups %}
|
|
<table class="table table-striped table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th>Document</th>
|
|
<th>Title</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for state in state_groups %}
|
|
<tr class="info"><th colspan="2">{{state.grouper}}</th></tr>
|
|
|
|
{% for doc in state.list %}
|
|
<tr>
|
|
<td>{{ doc.displayname_with_link|safe }}</td>
|
|
<td><b>{{ doc.title }}</b></td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock content %}
|
|
|