{% extends "base.html" %} {# Copyright The IETF Trust 2007, All Rights Reserved #} {% block title %}Internet Draft States{% endblock %} {% block content %}

Main I-D States

View Diagram

{# XXX I-D Exists should be added to the database #} {% for state in states %} {% endfor %}
State Description Next State(s)
I-D Exists Initial (default) state for all internet drafts. Such documents are not being tracked by the IESG as no request has been made of the IESG to do anything with the document.
  • AD is watching
  • Publication Requested
{{ state.state|escape }} {{ state.description|escape }}
    {% for next in state.nextstate.all %}
  • {{ next.next_state.state }} {% endfor %}

Sub States

{% for substate in substates %} {% endfor %}
Sub State NameDescription
{{ substate.sub_state|escape }} {{ substate.description|escape }}
{% endblock %}