|
| 1 | +{% extends "wginfo/wg_base.html" %} |
| 2 | +{% comment %} |
| 3 | +Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 | +All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com> |
| 5 | + |
| 6 | +Redistribution and use in source and binary forms, with or without |
| 7 | +modification, are permitted provided that the following conditions |
| 8 | +are met: |
| 9 | + |
| 10 | + * Redistributions of source code must retain the above copyright |
| 11 | + notice, this list of conditions and the following disclaimer. |
| 12 | + |
| 13 | + * Redistributions in binary form must reproduce the above |
| 14 | + copyright notice, this list of conditions and the following |
| 15 | + disclaimer in the documentation and/or other materials provided |
| 16 | + with the distribution. |
| 17 | + |
| 18 | + * Neither the name of the Nokia Corporation and/or its |
| 19 | + subsidiary(-ies) nor the names of its contributors may be used |
| 20 | + to endorse or promote products derived from this software |
| 21 | + without specific prior written permission. |
| 22 | + |
| 23 | +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 24 | +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 25 | +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 26 | +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 27 | +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 28 | +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 29 | +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 30 | +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 31 | +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 32 | +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 33 | +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 34 | +{% endcomment %} |
| 35 | +{% load ietf_filters %} |
| 36 | + |
| 37 | +{% block wg_titledetail %}Charter{% endblock %} |
| 38 | + |
| 39 | +{% block wg_content %} |
| 40 | + |
| 41 | +<div style="background:#edf5ff;border:1px solid #cccccc;float:right;padding: 4px;margin-top:16px;"> |
| 42 | + |
| 43 | +<table> |
| 44 | +<tr> |
| 45 | +<td colspan="2"> |
| 46 | +<b>Personnel</b> |
| 47 | +</td> |
| 48 | +</tr> |
| 49 | + |
| 50 | +<tr valign="top"> |
| 51 | +<td style="width:14ex;">Chair{{ wg.chairs.count|pluralize:",s" }}:</td> |
| 52 | +<td> |
| 53 | +{% for chair in wg.chairs %} |
| 54 | +<a href="mailto:{{ chair.person.email.1 }}">{{ chair.person|escape }} <{{ chair.person.email.1 }}></a><br/> |
| 55 | +{% endfor %} |
| 56 | +</td></tr> |
| 57 | +<tr><td>Area Director:</td> |
| 58 | +<td> |
| 59 | +{% ifequal wg.area_director.person.email.1 "noreply@ietf.org" %}?{%else%} |
| 60 | +<a href="mailto:{{ wg.area_director.person.email.1 }}">{{ wg.area_director.person }} <{{wg.area_director.person.email.1 }}></a>{% endifequal %} |
| 61 | +</td> |
| 62 | +</tr> |
| 63 | +{% if wg.wgtechadvisor_set.count %} |
| 64 | +<tr> |
| 65 | +<td>Tech Advisor{{ wg.wgtechadvisor_set.count|pluralize:",s" }}:</td> |
| 66 | +<td> |
| 67 | +{% for techadvisor in wg.wgtechadvisor_set.all %} |
| 68 | +<a href="mailto:{{ techadvisor.person.email.1 }}">{{ techadvisor.person }} <{{ techadvisor.person.email.1 }}></a><br/> |
| 69 | +{% endfor %} |
| 70 | +</td></tr> |
| 71 | +{% endif %} |
| 72 | +{% if wg.wgeditor_set.count %} |
| 73 | +<td>Editor{{ wg.wgeditor_set.count|pluralize:",s" }}:</td> |
| 74 | +<td> |
| 75 | +{% for editor in wg.wgeditor_set.all %} |
| 76 | +<a href="mailto:{{ editor.person.email.1 }}">{{ editor.person }} <{{ editor.person.email.1 }}></a><br/> |
| 77 | +{% endfor %} |
| 78 | +</td></tr> |
| 79 | +{% endif %} |
| 80 | +{% if wg.secretaries %} |
| 81 | +<tr><td>Secretar{{ wg.secretaries.count|pluralize:"y,ies" }}:</td> |
| 82 | +<td> |
| 83 | +{% for secretary in wg.secretaries %} |
| 84 | +<a href="mailto:{{ secretary.person.email.1 }}">{{ secretary.person }} <{{ secretary.person.email.1 }}></a><br/> |
| 85 | +{% endfor %} |
| 86 | +</td></tr> |
| 87 | +{% endif %} |
| 88 | + |
| 89 | +<tr> |
| 90 | +<td colspan="2"> |
| 91 | +<br/><b>Mailing List</b> |
| 92 | +</td> |
| 93 | +</tr> |
| 94 | + |
| 95 | +<tr><td>Address:</td><td><a href="mailto:{{ wg.email_address }}">{{ wg.email_address }}</a></td></tr> |
| 96 | +<tr><td>To Subscribe:</td><td<a href="{{ wg.email_subscribe }}">{{ wg.email_subscribe }}</a></td></tr> |
| 97 | +<tr><td>Archive:</td><td><a href="{{ wg.email_archive }}">{{ wg.email_archive }}</a></td></tr> |
| 98 | + |
| 99 | +<tr> |
| 100 | +<td colspan="2"> |
| 101 | +<br/><b>Jabber Chat</b> |
| 102 | +</td> |
| 103 | +</tr> |
| 104 | + |
| 105 | +<tr><td>Room Address:</td><td><a href="xmpp:{{wg}}@jabber.ietf.org">xmpp:{{wg}}@jabber.ietf.org</a></td></tr> |
| 106 | +<tr><td>Logs:</td><td><a href="http://jabber.ietf.org/logs/{{wg}}/">http://jabber.ietf.org/logs/{{wg}}/</td></tr> |
| 107 | + |
| 108 | +</table> |
| 109 | +</div> |
| 110 | + |
| 111 | +<h2>Description of Working Group</h2> |
| 112 | +<p>{{ wg.charter_text|escape|format_charter|safe }}</p> |
| 113 | + |
| 114 | +<h2>Goals and Milestones</h2> |
| 115 | +<table> |
| 116 | +{% for milestone in wg.milestones %} |
| 117 | + <tr> |
| 118 | + <td width="80px"> |
| 119 | + {% ifequal milestone.done 'Done' %} Done |
| 120 | + {% else %} |
| 121 | + {%ifequal milestone.expected_due_date.month 1 %}Jan{% endifequal %} |
| 122 | + {%ifequal milestone.expected_due_date.month 2 %}Feb{% endifequal %} |
| 123 | + {%ifequal milestone.expected_due_date.month 3 %}Mar{% endifequal %} |
| 124 | + {%ifequal milestone.expected_due_date.month 4 %}Apr{% endifequal %} |
| 125 | + {%ifequal milestone.expected_due_date.month 5 %}May{% endifequal %} |
| 126 | + {%ifequal milestone.expected_due_date.month 6 %}Jun{% endifequal %} |
| 127 | + {%ifequal milestone.expected_due_date.month 7 %}Jul{% endifequal %} |
| 128 | + {%ifequal milestone.expected_due_date.month 8 %}Aug{% endifequal %} |
| 129 | + {%ifequal milestone.expected_due_date.month 9 %}Sep{% endifequal %} |
| 130 | + {%ifequal milestone.expected_due_date.month 10 %}Oct{% endifequal %} |
| 131 | + {%ifequal milestone.expected_due_date.month 11 %}Nov{% endifequal %} |
| 132 | + {%ifequal milestone.expected_due_date.month 12 %}Dec{% endifequal %} |
| 133 | + {{ milestone.expected_due_date.year }} |
| 134 | + {% endifequal %} |
| 135 | + </td> |
| 136 | + <td>{{ milestone.description|escape }} |
| 137 | + </td></tr> |
| 138 | +{% endfor %} |
| 139 | +</table> |
| 140 | +{% endblock wg_content %} |
| 141 | + |
0 commit comments