{% extends "wginfo/wg_base.html" %} {% block wg_titledetail %}Delegates{% endblock %} {% block wg_content %}

Manage delegates

Sometimes, a WG has one (or more) WG Secretaries, in addition to the WG Chairs. This page lets the WG Chairs delegate the authority to do updates to the WG state of WG documents in the datatracker.

You may at most delegate the datatracker update rights to {{ max_delegates }} persons at any given time.

{% if delegates %}
{% for delegate in delegates %} {% endfor %}
RemoveDelegate name
{{ delegate.person }}
{% else %} No delegates {% endif %}
{% if add_form.message %} {% endif %}
Add new delegate
{{ add_form.message.value }}
{% if can_add %}
{{ add_form.as_p }}

{% if add_form.can_cancel %}No! I don't want to continue{% endif %}

{% else %} You can only assign {{ max_delegates }} delegates. Please remove delegates to add a new one. {% endif %}
{% endblock %}