{% extends "group/group_base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load ietf_filters %} {% load markup_tags %} {% load textfilters group_filters %} {% block group_content %} {% origin %} {% if group.state_id == "conclude" %}

Note: The data for concluded {{ group.type.name }}s is occasionally incorrect.

{% endif %} {% if group.parent and group.parent.type_id == "area" %} {% else %} {% endif %} {% if group.features.has_chartering_process %} {% endif %} {% if can_provide_status_update or status_update %} {% endif %} {% if group.features.has_documents %} {% endif %} {% with group.groupextresource_set.all as resources %} {% if resources or can_edit_group %} {% endif %} {% endwith %} {% for slug, label, roles in group.personnel %} {% if forloop.first %} {% else %} {% endif %} {% endfor %} {% if group.list_email %} {% endif %} {% if group.state_id != "conclude" and group.features.has_default_jabber %} {% endif %}
{{ group.type.name }} Name {% if can_edit_group %} Edit {% endif %} {{ group.name }}
Acronym {{ group.acronym }}
{{ group.parent.type.name }} {{ group.parent.name }} ({{ group.parent.acronym }})
State {% if can_edit_group %} Edit {% endif %} {{ group.state.name }} {% if requested_close %}
In the process of being closed
{% endif %}
Charter {% if group.charter %} {{ group.charter.name }}-{{ group.charter.rev }} {{ group.charter.get_state.name }} {% else %} (None) {% if user|has_role:"Area Director,Secretariat" %} Submit charter {% endif %} {% endif %}
Status Update {% if can_provide_status_update %} Edit {% endif %} {% if status_update %} Show update (last changed {{status_update.time|date:"Y-m-d"}}) {% else %} (None) {% endif %}
Dependencies Document dependency graph (SVG)
Additional Resources {% if can_edit_group %} Edit {% endif %} {% if resources %} {% for resource in resources|dictsort:"display_name" %} {% if resource.name.type.slug == 'url' or resource.name.type.slug == 'email' %} {# Maybe make how a resource displays itself a method on the class so templates aren't doing this switching #} {% else %} {% endif %} {% endfor %}
- {% firstof resource.display_name resource.name.name %}
- {% firstof resource.display_name resource.name.name %}: {{resource.value}}
{% endif %}
Personnel{{ label }} {% if can_edit_group and slug in editable_roles %} Edit {% endif %} {% for r in roles %} {% role_person_link r %}
{% endfor %}
Mailing list Address {% if can_edit_group %} Edit {% endif %} {{ group.list_email|linkify }}
To subscribe {% if can_edit_group %} Edit {% endif %} {{ group.list_subscribe|linkify }}
Archive {% if can_edit_group %} Edit {% endif %} {{ group.list_archive|linkify }}
Jabber chat Room address xmpp:{{ group.acronym }}@jabber.ietf.org?join
Logs https://jabber.ietf.org/logs/{{ group.acronym }}/
{% if requested_close or group.state_id == "conclude" %} {% if user|has_role:"Secretariat" %} Edit  {% if closing_note and closing_note.desc != "(Closing note deleted)" %} {{ closing_note.desc }} {% endif %} {% else %} {% if closing_note and closing_note.desc != "(Closing note deleted)" %}

Closing note for {{ group.type.desc.title }}

{{ closing_note.desc }} {% endif %} {% endif %} {% endif %} {% if group.features.has_chartering_process %}

Charter for {% if group.state_id == "proposed" %}proposed{% endif %} {{ group.type.desc.title }}

{# the linebreaks filter adds

, no surrounding

necessary: #} {{ group.charter_text|linebreaks }} {% else %}

About

{% comment %}{{ group.description|default:"No description yet."|linebreaks }}{% endcomment %} {{ group.description|default:"No description yet."| apply_markup:"restructuredtext" }} {% endif %} {% if group.features.has_milestones %} {% include "group/milestones.html" with milestones=group.milestones %} {% if milestones_in_review %}

{{ milestones_in_review|length }} new milestone{{ milestones_in_review|pluralize }} currently in {{ milestone_reviewer }} review.

{% endif %} {% endif %} {% endblock %}