forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview_request.html
More file actions
47 lines (47 loc) · 1.64 KB
/
review_request.html
File metadata and controls
47 lines (47 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{% extends "base.html" %}
{# Copyright The IETF Trust 2016, All Rights Reserved #}
{% load origin django_bootstrap5 static person_filters %}
{% block title %}Review request for {{ review_req.doc.name }}{% endblock %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block content %}
{% origin %}
<h1>
Review request
<br>
<small class="text-muted">{{ review_req.doc.name }}</small>
</h1>
{% include "doc/review/request_info.html" %}
{% if can_close_request %}
<a class="btn btn-danger"
href="{% url "ietf.doc.views_review.close_request" name=doc.name request_id=review_req.pk %}">
<i class="bi bi-x-circle"></i>
Close request
</a>
{% endif %}
<h2 class="mt-5">History</h2>
<div id="history">
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="date">Date</th>
<th data-sort="by">By</th>
<th data-sort="description">Description</th>
</tr>
</thead>
{% for h in history %}
{% if h.history_change_reason %}
<tr>
<td>{{ h.history_date|date }}</td>
<td>{% person_link h.history_user.person %}</td>
<td>{{ h.history_change_reason }}</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}