-
Notifications
You must be signed in to change notification settings - Fork 53
/
eeps.html
80 lines (80 loc) · 2.04 KB
/
eeps.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
layout: default
title: EEPs
---
<div class="container border-top pt-4">
<div class="row">
<div class="col">
<table class="table">
<tr>
<th>Status</th>
<th>Num</th>
<th class="d-none d-md-table-cell">Created</th>
<th>Title</th>
<th class="d-none d-md-table-cell">Owner</th>
</tr>
{% for post in site.eeps %}
<tr>
<td class="text-nowrap">{{ post.ShortType }}{{ post.ShortStatus }}{{ post.StatusTag }}</td>
<td class="text-nowrap"><a href="{% link {{post.path}} %}">{{ post.Num }}</a></td>
<td class="d-none d-md-table-cell text-nowrap">{{ post.Created }}</td>
{% if post.Title %}
<td>{{ post.Title }}</td>
{% else %}
<td>{{ post.excerpt | markdownify | strip_html }}</td>
{% endif %}
<td class="d-none d-md-table-cell text-nowrap">{{ post.Owner }}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
<h2>Legend</h2>
<div class="row">
<div class="col">
<table class="table">
<tr>
<td>P</td>
<td>Process track</td>
</tr>
<tr>
<td>S</td>
<td>Standards track</td>
</tr>
<tr>
<td>A</td>
<td>Accepted</td>
</tr>
<tr>
<td>R</td>
<td>Rejected</td>
</tr>
<tr>
<td>Rep</td>
<td>Replaced</td>
</tr>
<tr>
<td>W</td>
<td>Withdrawn</td>
</tr>
<tr>
<td>D</td>
<td>Deferred</td>
</tr>
<tr>
<td>F</td>
<td>Final</td>
</tr>
{% assign statustag = site.eeps | group_by:"StatusTag" %}
{% for status in statustag %}
{% if status.items[0].StatusTag %}
<tr>
<td>{{ status.items[0].StatusTag }}</td>
<td>{{ status.items[0].StatusDescription }}</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>
</div>
</div>