{% extends "wginfo/wg_base.html" %} {% block wg_titledetail %}Manage Workflow{% endblock %} {% block pagehead %} {{ block.super }} {% endblock pagehead %} {% block morecss %} {{ block.super }} .state-table .inactive, .tag-table .inactive { font-style: italic; color: #666; } .state-table .state { padding-right: 0.6em; } .set-next-states { margin-top: 1em; } .set-next-states label { display: block; cursor: pointer; } .set-next-states label input { vertical-align: middle; } .set-state input, .set-tag input { width: 6em; } .toggled { display: none; } .toggler { color: #000; text-decoration: none; padding: 0px 3px; display: inline-block; margin-left: 0.5em; font-size: 15px; font-weight: bold; } .inactive .toggler { color: #666; } .toggler:hover { background-color: #999; color: #fff; } {% endblock %} {% block wg_content %}

Edit workflow

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

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

States

{% for state in states %} {% endfor %}
Turn on/off State Next states
{% if state.mandatory %} (mandatory) {% else %}
{% if state.used %} {% else %} {% endif %}
{% endif %}
{{ state.name }} {% if not state.used %} (not used in {{ wg.acronym }}){% endif %} +
{{ state.desc|safe|linebreaks }}
{% if state.used_next_states %} {% for n in state.used_next_states %}{{ n.name }}{% if not forloop.last %} {% endif %}{% endfor %} {% else %} None {% endif %} +
Select the next states: {% for checked, default, s in state.next_states_checkboxes %} {{ s.name }}{% if default %} (default){% endif %} {% endfor %}

Tags

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