Notify the Secretariat when someone other than the secretariat initiates a conflict review.
Notify IANA when anyone initiates a conflict review.
Fixes tickets #1287 and #1289
- Legacy-Id: 7225
Note: SVN reference [7210] has been migrated to Git commit a0fd974c92
49 lines
1.2 KiB
HTML
49 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}Begin IETF conflict review : {{doc_to_review.canonical_name}}-{{doc_to_review.rev}}{% endblock %}
|
|
|
|
{% block morecss %}
|
|
form.start-conflict-review #id_notify {
|
|
width: 600px;
|
|
}
|
|
form.start-conflict-review .actions {
|
|
padding-top: 20px;
|
|
}
|
|
.warning {
|
|
font-weight: bold;
|
|
color: #a00;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Begin IETF conflict review for {{doc_to_review.canonical_name}}-{{doc_to_review.rev}}</h1>
|
|
|
|
{% if user|has_role:"Secretariat" %}
|
|
<p class="helptext">For help on the initial state choice, see the <a href="{% url "state_help" type="conflict-review" %}">state table</a>.</p>
|
|
{% endif %}
|
|
|
|
<form class="start-conflict-review" action="" method="post">{% csrf_token %}
|
|
<table>
|
|
{% for field in form.visible_fields %}
|
|
<tr>
|
|
<th>{{ field.label_tag }}</th>
|
|
<td>{{ field }}
|
|
{% if field.help_text %}<div class="help">{{ field.help_text }}</div>{% endif %}
|
|
|
|
{{ field.errors }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
<tr>
|
|
<td colspan="2" class="actions">
|
|
<a href="{% url "doc_view" name=doc_to_review.name %}">Back</a>
|
|
<input type="submit" value="Submit"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
{% endblock %}
|