forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.html
More file actions
30 lines (30 loc) · 1.11 KB
/
start.html
File metadata and controls
30 lines (30 loc) · 1.11 KB
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
26
27
28
29
30
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load django_bootstrap5 %}
{% block title %}Begin RFC status change review{% endblock %}
{% block content %}
{% origin %}
<h1>Begin RFC status change review</h1>
<p>
<a class="mt-3 btn btn-primary"
href="{% url 'ietf.doc.views_help.state_help' type="status-change" %}">
Help on states
</a>
</p>
<form class="start-rfc-status-change-review" method="post">
{% csrf_token %}
<label class="col-form-label">Affected RFCs</label>
{% include "doc/status_change/edit_related_rows.html" %}
{% bootstrap_form form %}
<button type="submit"
class="btn btn-primary"
name="submit_response"
value="Submit">Submit</button>
<a class="btn btn-secondary float-end" href="{% url 'ietf.doc.views_status_change.rfc_status_changes' %}">Back</a>
</form>
{% endblock %}
{% block js %}
<script src="{% static 'ietf/js/status-change-edit-relations.js' %}"></script>
{% endblock %}