datatracker/ietf/templates/doc/submit_to_iesg.html
Henrik Levkowetz 5d8306cfc8 Merged in [9733] from lars@netapp.com:
First round of HTML fixes identified by test-crawl --vnu.
 - Legacy-Id: 9764
Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
2015-07-18 08:55:30 +00:00

83 lines
3 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}
Publication request for {{doc.name}}-{{doc.rev}}
{% endblock %}
{% block content %}
{% origin %}
<h1>Publication request<br><small>{{doc.name}}-{{doc.rev}}</small></h1>
<p>
Please verify the following information:
</p>
<table class="table table-condensed table-striped">
<tr {% if warn.intended_std_level %}class="warning"{% endif %}>
<th class="text-nowrap">Intended status level</th>
<td>{% if warn.intended_std_level %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{{doc.intended_std_level}}</td>
</tr>
<tr>
<th class="text-nowrap">Responsible AD</th>
<td></td>
<td>{{ad}}</td>
</tr>
<tr {% if warn.shepherd %}class="warning"{% endif %}>
<th class="text-nowrap">Document shepherd</th>
<td>{% if warn.shepherd %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{% if doc.shepherd %}{{ doc.shepherd.person }}{% endif %}</td>
</tr>
<tr {% if warn.shepherd_writeup %}class="warning"{% endif %}>
<th class="text-nowrap">Shepherd write-up exists</th>
<td>{% if warn.shepherd_writeup %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{%if shepherd_writeup %}Yes{%else%}No{%endif%}</td>
</tr>
<tr>
<th class="text-nowrap">Also notify</th>
<td></td>
<td>{% if notify %}{{notify}}{%else%}(None){%endif%}</td>
</tr>
<tr {% if warn.tags %}class="warning"{% endif %}>
<th class="text-nowrap">Annotation tags</th>
<td>{% if warn.tags %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{% if not tags %}(None){%else%}{% for tag in tags %}{{ tag }}{% if not forloop.last%}, {%endif%}{% endfor %}{% endif %}</td>
</tr>
</table>
{% if warn %}
<p class="alert alert-warning"><span class="fa fa-warning"></span> indicates the document might not be ready for submission. Please check each instance carefully to see if changes need to be made to the document's state before submitting.</p>
{% endif %}
<p>
Upon submission:
<ul>
<li> the document will be placed into the IESG '{{target_state.iesg}}' state</li>
<li> the document will be placed into the working group '{{target_state.wg}}' state</li>
{% if not ad == doc.ad %}<li> the responsible AD will be set as above </li>{% endif %}
{% if not notify == doc.notify %}<li> the document's state change notification list will be set as above </li>{% endif %}
<li> an entry will be made noting the publication request in the document's history</li>
<li> an email message will be sent to the working group chairs, the secretariat, and everyone listed above</li>
</ul>
</p>
<form method="post">
{% csrf_token %}
{% buttons %}
<input type="submit" class="btn btn-warning" name="confirm" value="Request publication">
<input type="submit" class="btn btn-default pull-right" name="cancel" value="Back">
{% endbuttons %}
</form>
{% endblock %}