forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit_unsolicited_review.html
More file actions
25 lines (25 loc) · 975 Bytes
/
submit_unsolicited_review.html
File metadata and controls
25 lines (25 loc) · 975 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 %}Submit an unsolicited review of {{ review_req.doc.name }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Submit unsolicited review
<br>
<small class="text-muted">{{ doc.name }}</small>
</h1>
<p class="my-3 alert alert-info">
You are submitting an <strong>unsolicited</strong> review for this document.
First, select the team for which you will be submitting this review.
</p>
<form class="form-horizontal" method="post">
{% csrf_token %}
{% bootstrap_form form layout="horizontal" %}
<button type="submit" class="btn btn-primary">Continue</button>
<a class="btn btn-secondary float-end"
href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">
Back
</a>
</form>
{% endblock %}