40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
{% 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 %}
|