{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load bootstrap3 %} {% block title %}Customize Workflow for {{ group.acronym }} {{ group.type.name }}{% endblock %} {% block content %} {% origin %} {% load ietf_filters %}

Customize Workflow for {{ group.acronym }} {{ group.type.name }}

Below you can customize the draft states and tags used in the {{ group.acronym }} {{ group.type.name }}. Note that some states are mandatory for group operation and cannot be deactivated.

{% if group.type_id == "wg" %}

You can see the default Working Group I-D State Diagram in Section 4.1 of RFC6174.

{% endif %}

States

{% for state in states %} {% endfor %}
State Next states Turn on/off
{{ state.name }} {% if not state.used %} (not used in {{ group.acronym }}){% endif %} {{ state|statehelp }}
{% if state.used_next_states %} {% for n in state.used_next_states %}
{{ n.name }}
{% endfor %} {% else %}
None
{% endif %}
{% csrf_token %}
Select the next states:
{% for checked, default, s in state.next_states_checkboxes %}
{% endfor %}
{% if state.mandatory %} (mandatory) {% else %}
{% csrf_token %}
{% endif %}

Tags

{% for tag in tags %} {% endfor %}
Tag Turn on/off
{{ tag.name }} {% if not tag.used %} (not used in {{ group.acronym }}){% endif %}
{% csrf_token %}
{% endblock content %}