datatracker/ietf/templates/doc/review/close_request.html
Ole Laursen 19fff81a4f Rework closing a review request so the logic is reusable, add the more
specific close reasons to the database migration, add
ReviewRequest.requested_by so it's possible to notify the requester of
a review that it has been dropped.
 - Legacy-Id: 11520
2016-07-05 16:05:00 +00:00

25 lines
727 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2016, All Rights Reserved #}
{% load origin bootstrap3 static %}
{% block title %}Close review request for {{ review_req.doc.name }}{% endblock %}
{% block content %}
{% origin %}
<h1>Close review request<br><small>{{ review_req.doc.name }}</small></h1>
<p>Do you want to close the review request?</p>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<a class="btn btn-default" href="{% url "ietf.doc.views_review.review_request" name=doc.canonical_name request_id=review_req.pk %}">Cancel</a>
<button type="submit" class="btn btn-primary">Close request</button>
{% endbuttons %}
</form>
{% endblock %}