datatracker/ietf/templates/doc/submit_to_iesg.html
Henrik Levkowetz 9bf1ff01f1 Merged in [10621] from lars@netapp.com:
Use js tablesort almost everywhere I thought it would make sense. While I
touched the pages, I also corrected a few minor HTML nits, capitalization
inconsistencies and some other minor things.
Range r10605:r10621
 - Legacy-Id: 10647
Note: SVN reference [10621] has been migrated to Git commit 7d3c2681e2
2016-01-12 16:47:18 +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">
<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 %}