ballot sets are now (hopefully) treated properly, except for the row coloring. They're also included in the "view_id" view. Search is re-done, it turns out that using draft__<anything> means that RFCs won't be matched, so build lists of possibly-matching RFCs and I-Ds and pass them through. This applies to filename, group and rfc number. - Legacy-Id: 190
278 lines
7.6 KiB
HTML
278 lines
7.6 KiB
HTML
{% extends "idtracker/base.html" %}
|
|
|
|
{% load ietf_filters %}
|
|
|
|
{% block idcontent %}
|
|
<table width="90%" cellpading="1" cellspacing="0">
|
|
<tr>
|
|
<td bgcolor="000000">
|
|
<table width="100%" cellspacing="0" cellpading="5">
|
|
<tr bgcolor="BEBEBE" align="center">
|
|
<th colspan="2">
|
|
<div class="largefont">
|
|
Detail Info
|
|
</div>
|
|
{% if object.ballot_others %}
|
|
<div align="right">
|
|
<a href="#action">Action List</a>
|
|
</div>
|
|
{% endif %}
|
|
</th>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
Draft Name:
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
<a href="{{ object.document.doclink }}">
|
|
{{ object.document.displayname }}</a>
|
|
<font color="red">
|
|
{% if object.via_rfc_editor %}
|
|
Independent submission via RFC Editor
|
|
{% else %}
|
|
{% ifequal object.document.group_acronym "none" %}
|
|
Individual submission
|
|
{% else %}
|
|
WG <{{ object.document.group_acronym }}> submission
|
|
{% endifequal %}
|
|
{% endif %}
|
|
</font>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
IESG Discussion:
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
{% if object.ballot.ballot_issued %}
|
|
<a href="{% url ietf.idtracker.views.view_ballot object.ballot_id %}">IESG evaluation record</a>
|
|
[<a href="/idtracker/evaluation_process/">What
|
|
they mean</a>]
|
|
[<a href="/idtracker/ballot_key/">How they are
|
|
recorded</a>]
|
|
{% else %}
|
|
No IESG evaluation record
|
|
{% endif %}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
Version:
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
{{ object.document.revision }}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
Intended Status:
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
{{ object.document.intended_status }}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
On Next Agenda?
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
{{ object.agenda|yesno:"Yes,No" }}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
Current State:
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
<a href="/idtracker/states/{{ object.cur_state.document_state_id }}/">
|
|
{{ object.cur_state }}</a>
|
|
{% if object.cur_sub_state %}
|
|
::
|
|
<a href="/idtracker/states/sub_state/{{ object.cur_substate.sub_state_id }}/">
|
|
{{ object.cur_sub_state }}
|
|
</a>
|
|
{% endif %}
|
|
{% if object.rfc_flag %}
|
|
{% else %}
|
|
{% ifequal object.cur_state.state "RFC Ed Queue" %}
|
|
<a href="http://www.rfc-editor.org/queue.html#{{ object.draft.filename }}">
|
|
[RFC Editor State]</a>
|
|
{% endifequal %}
|
|
{% endif %}
|
|
</div>
|
|
<a href="/idtracker/states/">
|
|
[Show States Table]</a>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
Responsible AD:
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
{{ object.job_owner }}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
Status Date:
|
|
</div>
|
|
</td>
|
|
|
|
<td bgcolor="white">
|
|
<div class="largefont3">
|
|
{% firstof object.status_date " " %}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td>
|
|
<div class="largefont3">
|
|
Note:
|
|
</div>
|
|
</td>
|
|
|
|
<td>
|
|
<div class="largefont3">
|
|
{% firstof object.note|unformat_textarea %}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="white">
|
|
<td width="20%"> </td>
|
|
|
|
<td>
|
|
<table cellpadding="1" cellspacing="1" border="0">
|
|
<tr>
|
|
<td>
|
|
<form action="{% url ietf.idtracker.views.search %}" method="GET">
|
|
<input type="submit" value=
|
|
"Main Menu">
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{% if object.ballot_others %}
|
|
<a name="action"></a>
|
|
<table border="1" bgcolor="black">
|
|
<tr><td><font color="white"><h3>Actions</h3></font>
|
|
{# this "regroup" is to get the data structure into the shape
|
|
# that search_result_table wants - it doesn't do anything real. #}
|
|
{% regroup object.ballot_primary by docstate as grouped %}
|
|
{% include "idtracker/search_result_table.html" %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endif %}
|
|
|
|
<h3>Comment Log</h3>
|
|
|
|
<table cellpadding="1" cellspacing="1" border="0">
|
|
<tr bgcolor="#7DC189">
|
|
<th>Date</th>
|
|
|
|
<th>Version</th>
|
|
|
|
<th>Comment</th>
|
|
</tr>
|
|
|
|
{% for comment in object.comments %}
|
|
<tr bgcolor="{% cycle #CFE1CC,#7DC189 %}">
|
|
<td>{{ comment.date }}</td>
|
|
|
|
<td align="center">{{ comment.version }}</td>
|
|
|
|
<td><font color="blue">[{{ comment.get_username }}]</font>
|
|
{% if comment.ballot %}
|
|
<font color="red">[IN IESG DISCUSSION
|
|
<b>*{{ comment.get_ballot_display }}*</b>]</font>
|
|
{% endif %} {{ comment.comment_text|format_textarea|truncatewords_html:"25" }}</td>
|
|
|
|
<!-- this form element technically belongs inside the <td>
|
|
but that actually changes the visible spacing in most
|
|
browsers, so we let layout concerns make us write
|
|
invalid HTML. -->
|
|
<form action="comment/{{ comment.id }}" method="GET">
|
|
<td>
|
|
<input type="submit" value="View Detail">
|
|
</td>
|
|
</form>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<br>
|
|
|
|
|
|
<form action="{% url ietf.idtracker.views.search %}" method="GET">
|
|
<input type="submit" value="Main Menu">
|
|
<input type="button" name="back_button" value="BACK"
|
|
onclick="history.go(-1);return true">
|
|
</form>
|
|
<!-- begin new footer -->
|
|
<hr>
|
|
|
|
<p>Did you find a bug? <a href=
|
|
"pidtracker.cgi?command=send_email&cat=bugs">Let us
|
|
know</a>.</p>
|
|
|
|
<p><a href=
|
|
"pidtracker.cgi?command=send_email&cat=discuss">Any
|
|
question or suggestion</a>?</p>
|
|
|
|
<p><i>This page produced by the <a href=
|
|
"mailto:iesg-secretary@ietf.org">IETF Secretariat</a> for
|
|
the <a href="mailto:iesg@ietf.org">IESG</a></i></p>
|
|
|
|
{% endblock %}
|