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
39 lines (30 loc) · 1.11 KB
/
start.html
File metadata and controls
39 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
31
32
33
34
35
36
37
38
39
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load bootstrap3 %}
{% block title %}Begin RFC status change review{% endblock %}
{% block content %}
{% origin %}
<h1>Begin RFC status change review</h1>
<p><a class="btn btn-default" 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 %}
<div class="row">
<label class="control-label col-md-5">Affected RFCs</label>
</div>
{% include "doc/status_change/edit_related_rows.html" %}
<div class="row">
<div class="col-md-10">
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary" name="submit_response" value="Submit">Submit</button>
<a class="btn btn-default pull-right" href="{{ back_url }}">Back</a>
{% endbuttons %}
</div>
</div>
</form>
{% endblock %}
{% block js %}
<script src="{% static 'ietf/js/status-change-edit-relations.js' %}"></script>
{% endblock %}