forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclose_request.html
More file actions
25 lines (25 loc) · 900 Bytes
/
close_request.html
File metadata and controls
25 lines (25 loc) · 900 Bytes
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
{% extends "base.html" %}
{# Copyright The IETF Trust 2016, All Rights Reserved #}
{% load origin django_bootstrap5 static %}
{% block title %}Close review request for {{ review_req.doc.name }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Close review request
<br>
<small class="text-muted">{{ review_req.doc.name }}</small>
</h1>
{% include "doc/review/request_info.html" %}
<p class="alert alert-info my-3">
Do you want to close the review request?
</p>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-primary">Close request</button>
<a class="btn btn-secondary float-end"
href="{% url "ietf.doc.views_review.review_request" name=doc.canonical_name request_id=review_req.pk %}">
Back
</a>
</form>
{% endblock %}