73 lines
3.7 KiB
HTML
73 lines
3.7 KiB
HTML
{% load ams_filters %}
|
|
<table class="full-width">
|
|
<col width="200">
|
|
<tr class="row1"><td>Working Group Name:</td><td>{{ group.name }} ({{ group.acronym }})</td></tr>
|
|
<tr class="row2"><td>Area Name:</td><td>{{ group.parent }}</td></tr>
|
|
<tr class="row1"><td>Number of Sessions Requested:</td><td>{% if session.length_session3 %}3{% else %}{{ session.num_session }}{% endif %}</td></tr>
|
|
{% for sess_form in form.session_forms %}{% if sess_form.cleaned_data and not sess_form.cleaned_data.DELETE %}
|
|
<tr class="row2"><td>Session {{ forloop.counter }}:</td><td>
|
|
<dl>
|
|
<dt>Length</dt><dd>{{ sess_form.cleaned_data.requested_duration.total_seconds|display_duration }}</dd>
|
|
{% if sess_form.cleaned_data.name %}<dt>Name</dt><dd>{{ sess_form.cleaned_data.name }}</dd>{% endif %}
|
|
{% if sess_form.cleaned_data.purpose.slug != 'regular' %}
|
|
<dt>Purpose</dt>
|
|
<dd>
|
|
{{ sess_form.cleaned_data.purpose }}
|
|
{% if sess_form.cleaned_data.purpose.timeslot_types|length > 1 %}({{ sess_form.cleaned_data.type }}){% endif %}
|
|
</dd>
|
|
{% endif %}
|
|
</dl>
|
|
</td></tr>
|
|
{% if group.features.acts_like_wg and forloop.counter == 2 and not is_virtual %}
|
|
<tr class="row2"><td>Time between sessions:</td><td>{% if session.session_time_relation_display %}{{ session.session_time_relation_display }}{% else %}No preference{% endif %}</td></tr>
|
|
{% endif %}
|
|
{% endif %}{% endfor %}
|
|
<tr class="row1"><td>Number of Attendees:</td><td>{{ session.attendees }}</td></tr>
|
|
<tr class="row2">
|
|
<td>Conflicts to Avoid:</td>
|
|
<td>
|
|
{% if session_conflicts.outbound %}
|
|
<table>
|
|
{% for conflict in session_conflicts.outbound %}
|
|
<tr><td>{{ conflict.name|title }}: </td><td>{{ conflict.groups }}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}<i>None</i>{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr class="row1">
|
|
<td>Other WGs that included {{ group }} in their conflict list:</td>
|
|
<td>{% if session_conflicts.inbound %}{{ session_conflicts.inbound }}{% else %}<i>None so far</i>{% endif %}</td>
|
|
</tr>
|
|
{% if not is_virtual %}
|
|
<tr class="row2">
|
|
<td>Resources requested:</td>
|
|
<td>{% if session.resources %}<ul>{% for resource in session.resources %}<li>{{ resource.desc }}</li>{% endfor %}</ul>{% else %}<i>None so far</i>{% endif %}</td>
|
|
</tr>
|
|
{% endif %}
|
|
<tr class="row1">
|
|
<td>People who must be present:</td>
|
|
<td>{% if session.bethere %}<ul>{% for person in session.bethere %}<li>{{ person }}</li>{% endfor %}</ul>{% else %}<i>None</i>{% endif %}</td>
|
|
<tr class="row2">
|
|
<td>Can not meet on:</td>
|
|
<td>{% if session.timeranges_display %}{{ session.timeranges_display|join:', ' }}{% else %}No constraints{% endif %}</td>
|
|
</tr>
|
|
{% if not is_virtual %}
|
|
<tr class="row1">
|
|
<td>Adjacent with WG:</td>
|
|
<td>{{ session.adjacent_with_wg|default:'No preference' }}</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<td>Joint session:</td>
|
|
<td>
|
|
{% if session.joint_with_groups %}
|
|
{{ session.joint_for_session_display }} with: {{ session.joint_with_groups }}
|
|
{% else %}
|
|
Not a joint session
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
<tr class="row1"><td>Special Requests:</td><td>{{ session.comments }}</td></tr>
|
|
</table>
|