52 lines
2.3 KiB
HTML
52 lines
2.3 KiB
HTML
{% extends "idtracker/base.html" %}
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}IESG Announcement{% endblock %}
|
|
|
|
{% block idcontent %}
|
|
<pre>
|
|
To: Internet Engineering Steering Group <iesg@ietf.org>
|
|
From: IESG Secretary <iesg-secretary@ietf.org>
|
|
Reply-To: IESG Secretary <iesg-secretary@ietf.org>
|
|
Subject: Evaluation: {% for id in object.drafts.all %}{{ id.draft.filename }}-{{ id.draft.revision }}.txt to {{ id.draft.intended_status }}
|
|
{% endfor %}
|
|
--------
|
|
|
|
Evaluation for{% for id in object.drafts.all %} {{ id.draft.filename }}-{{ id.draft.revision }}.txt {% endfor %}can be found at
|
|
http://datatracker.ietf.org/idtracker/ballot/{{ object.ballot }}/ <!-- FIXME: hardcoded URL -->
|
|
{% if object.drafts.all.0.draft.lc_expiration_date %}
|
|
Last Call to expire on: {{ object.drafts.all.0.draft.lc_expiration_date|escape }}
|
|
{% endif %}
|
|
Please return the full line with your position.
|
|
|
|
Yes No-Objection Discuss Abstain
|
|
{% for position in object.positions.all|dictsort:"ad.last_name" %}{{ position.ad|ljust:"20" }} {{ position.yes|bracket }} {{ position.noobj|bracket }} {{ position.discuss|bracket }} {{ position.abstain_ind|bracket }}
|
|
{% endfor %}
|
|
|
|
"Yes" or "No-Objection" positions from 2/3 of non-recused ADs,
|
|
with no "Discuss" positions, are needed for approval.
|
|
|
|
DISCUSSES AND COMMENTS:
|
|
======================
|
|
{% for position in object.positions.all|dictsort:"ad.last_name" %}{% ifequal position.discuss 1 %}{{ position.ad }}:{% for item in object.discusses.all %}{% ifequal position.ad item.ad %}
|
|
|
|
Discuss [{{ item.date }}]:
|
|
{{ item.text|fill:"80"|escape }}
|
|
|
|
{% endifequal %}{% endfor %}{% endifequal %}{% for item in object.comments.all %}{% ifequal position.ad item.ad %}{% ifnotequal position.discuss 1 %}{{ position.ad }}:
|
|
|
|
{% endifnotequal %}Comment [{{ item.date }}]:
|
|
{{ item.text|fill:"80"|escape }}
|
|
|
|
{% endifequal %}{% endfor %}{% endfor %}
|
|
|
|
|
|
^L
|
|
---- following is a DRAFT of message to be sent AFTER approval ---
|
|
{{ object.approval_text|escape|urlize }}
|
|
|
|
{{ object.ballot_writeup|escape|urlize }}
|
|
</pre>
|
|
{% endblock %}
|
|
|