* fix: Make the "submit to IESG" workflow less surprising to @LPardue :-) Fixes #4209 * Merge part of #4256
46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Change {{ state_type.label }} for {{ doc }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Change {{ state_type.label }}
|
|
<br>
|
|
<small class="text-muted">{{ doc }}</small>
|
|
</h1>
|
|
{% if next_states %}
|
|
<a class="my-3 btn btn-info"
|
|
href="{% url 'ietf.doc.views_help.state_help' type=state_type.slug %}">Help on states</a>
|
|
<p>
|
|
<b>Move document to {{ next_states|pluralize:"to one of" }} the recommended next state{{ next_states|pluralize }}:</b>
|
|
</p>
|
|
{% for state in next_states %}
|
|
{% if state.slug == 'sub-pub' %}
|
|
<a type="button" class="btn btn-primary next-state" href="{% url 'ietf.doc.views_draft.to_iesg' name=doc.name %}">{{ state.name }}</a>
|
|
{% else %}
|
|
<button type="button" class="btn btn-primary next-state" data-state="{{ state.pk }}">{{ state.name }}</button>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
<form class="mt-5" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
<a class="btn btn-secondary float-end" href="{{ doc.get_absolute_url }}">Back</a>
|
|
</form>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script>
|
|
$(document).ready(function () {
|
|
$("button.next-state").click(function (e) {
|
|
var s = $(this).data("state");
|
|
if (s) {
|
|
e.preventDefault();
|
|
$("#id_new_state").val(s);
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %} |