2018-03-21 15:55:18 +00:00
|
|
|
{% assign bystatus = include.eips|sort:"eip"|group_by:"status" %}
|
|
|
|
{% for group in bystatus %}
|
2018-03-21 16:29:32 +00:00
|
|
|
{% if group.name != "" %}
|
2018-03-21 15:55:18 +00:00
|
|
|
<h2>{{group.name}}</h2>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr><th>Number</th><th>Title</th><th>Author</th></tr>
|
|
|
|
</thead>
|
|
|
|
{% for page in group.items %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{page.url|relative_url}}">{{page.eip|xml_escape}}</a></td>
|
|
|
|
<td>{{page.title|xml_escape}}</td>
|
2018-03-21 16:04:37 +00:00
|
|
|
<td>{% include authorlist.html authors=page.author %}</td>
|
2018-03-21 15:55:18 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|