25 lines
974 B
HTML
25 lines
974 B
HTML
{% 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-body-secondary">{{ 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.name %}">
|
|
Back
|
|
</a>
|
|
</form>
|
|
{% endblock %} |