{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin static %} {% block pagehead %} {% endblock %} {% block title %}Chartering or re-chartering groups{% endblock %} {% block content %} {% origin %} {% load ietf_filters %} {% load ballot_icon %}

Chartering or re-chartering groups

Groups with a charter in one of the following states:

{% for t in group_types %}

{{ t.name }}s

{% if t.can_manage %}

Charter new {{ t.name }}

{% endif %} {% if not t.chartering_groups %}

Found no groups in a chartering state.

{% else %} {% for g in t.chartering_groups %} {% endfor %}
{{ t.name }} Name Date Status
{{ g.acronym }} {{ g.name }} {{ g.charter.time|date:"Y-m-d" }}
{% ballot_icon g.charter %}
{{ g.charter.get_state.name }} {% if g.chartering_type == "initial" %}(Initial Chartering){% endif %} {% if g.chartering_type == "recharter" %}(Rechartering){% endif %} {% if not g.chartering_type and g.state_id != "active" %}({{ g.state.name }}){% endif %} {% if g.charter.telechat_date %}
IESG Telechat: {{ g.charter.telechat_date|date:"Y-m-d" }}{% endif %}
{% endif %} {% endfor %} {% endblock %} {% block js %} {% endblock %}