{% extends "nomcom/nomcom_private_base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% block subtitle %} - Positions{% endblock %} {% block nomcom_content %} {% origin %}

Positions in {{ nomcom.group }}

{% if nomcom.group.state_id == 'active' %} Add new position

If you need to start processing a new position while other positions are further along or have already closed (such as when the 2016 nomcom needed to seat a second RAI AD after moving an incumbent to the IESG chair position) adding a new position is the right way to start. Please review the Configuration Hints.

{% endif %} {% if positions %} {% regroup positions by is_open as posgroups %} {% for group in posgroups %}

{{ group.grouper| yesno:"Open Positions,Closed Positions"}}

{% for position in group.list %}

{{ position.name }}{% if position.is_iesg_position %} (IESG){% endif %}

{% if group.grouper %}
Accepting
{% if position.accepting_nominations %}Nominations{% endif %} {% if position.accepting_nominations and position.accepting_feedback %}and{% endif %} {% if position.accepting_feedback %}Feedback{% endif %}
{% endif %}
Templates
{% for template in position.get_templates %} {{ template }}
{% endfor %}
{% if nomcom.group.state_id == 'active' %}
Actions
Edit Remove
{% endif %}
{% endfor %}
{% endfor %} {% else %}

There are no positions defined.

{% endif %} {% endblock nomcom_content %}