* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
25 lines
909 B
HTML
25 lines
909 B
HTML
{% 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-body-secondary">{{ 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 %} |