{% 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
State |
Description |
Next State(s) |
{# XXX I-D Exists should be added to the database #}
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
|
{% for state in states %}
{{ state.state|escape }} |
{{ state.description|escape }} |
{% for next in state.nextstate.all %}
- {{ next.next_state.state }}
{% endfor %}
|
{% endfor %}
Sub States
Sub State Name | Description |
{% for substate in substates %}
{{ substate.sub_state|escape }} |
{{ substate.description|escape }} |
{% endfor %}
{% endblock %}