Skip to content

Commit 28b7ca7

Browse files
committed
Use new look for idtracker help pages
- Legacy-Id: 2170
1 parent 5277c63 commit 28b7ca7

3 files changed

Lines changed: 26 additions & 22 deletions

File tree

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
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 %}
4-
<h3>{{ state.state }}</h3>
5+
<h1>{{ state.state }}</h1>
56
{{ state.description|escape }}
6-
<center><form action=".">
7+
<form action=".">
78
<input type="button" value="Back" onClick="history.go(-1);"/>
8-
</form></center>
9+
</form>
910
{% endblock%}

ietf/templates/idtracker/states.html

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,39 @@
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
2023
not being tracked by the IESG as no request has been made of the
2124
IESG 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

ietf/templates/idtracker/view_evaluation_desc.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
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 %}
4-
<h1 class="first">Explanation of Discusses</h1>
5+
<h1>Explanation of Discusses</h1>
56
<pre>
67
The process that the IESG uses for recording and documenting issues
78
with documents is called an Evaluation. Evaluations provide a

0 commit comments

Comments
 (0)