1- {# Copyright The IETF Trust 2007, All Rights Reserved #}{% extends "base.html" %}
1+ {% extends "idrfc/base.html" %}
2+ {# Copyright The IETF Trust 2007, All Rights Reserved #}
23
34{% block content %}
45
5- < h1 class =" first " > Main I-D States</ h1 >
6+ < h1 > Main I-D States</ h1 >
67
8+ < p > < a href ="/images/state_diagram.gif "> View Diagram</ a > </ p >
79
8- < table class ="states ">
10+ < table class ="ietf-table ">
911
10- < tr class =" states " >
11- < th > State < a href =" /images/state_diagram.gif " > [View Diagram] </ a > </ th >
12+ < tr >
13+ < th > State</ th >
1214 < th > Description</ th >
1315 < th > Next State(s)</ th >
1416 </ tr >
1517
1618{# XXX I-D Exists should be added to the database #}
17- < tr class ="states ">
19+ < tr class ="{% cycle oddrow,evenrow as cycle1 %} ">
20+ < tr >
1821< td > I-D Exists</ td >
1922< td > Initial (default) state for all internet drafts. Such documents are
2023not being tracked by the IESG as no request has been made of the
2124IESG to do anything with the document.</ td >
2225< td >
23- < ul class =" states " >
26+ < ul >
2427< li > AD is watching
2528< li > Publication Requested</ ul >
2629</ td > </ tr >
2730
2831{% for state in states %}
29- < tr class ="states ">
30- < td class =" state " > {{ state.state|escape }}</ td >
32+ < tr class ="{% cycle cycle1 %} ">
33+ < td > {{ state.state|escape }}</ td >
3134 < td > {{ state.description|escape }}</ td >
3235 < td >
33- < ul class =" states " >
36+ < ul >
3437 {% for next in state.nextstate.all %}
3538 < li > {{ next.next_state.state }}
3639 {% endfor %}
@@ -40,18 +43,17 @@ <h1 class="first">Main I-D States</h1>
4043{% endfor %}
4144 </ table >
4245
43- < h1 > Sub States</ h1 >
44- < table class ="states ">
46+ < h2 > Sub States</ h2 >
47+ < table class ="ietf-table ">
4548
46- < tr class =" states " > < th > Sub State Name</ th > < th > Description</ th > </ tr >
49+ < tr > < th > Sub State Name</ th > < th > Description</ th > </ tr >
4750
4851{% for substate in substates %}
49- < tr class ="states ">
50- < td class =" state " > {{ substate.sub_state|escape }}</ td >
52+ < tr class ="{% cycle oddrow,evenrow %} ">
53+ < td > {{ substate.sub_state|escape }}</ td >
5154< td > {{ substate.description|escape }}</ td >
5255</ tr >
5356{% endfor %}
5457</ table >
5558
5659{% endblock %}
57- css
0 commit comments