EIPs/_includes/eiptable.html
Alex Beregszaszi 214064e623
Rename review-period-end to last-call-deadline (#4438)
* Rename review-period-end to last-call-deadline

* Update eipv to 0.4.0
2021-11-10 08:26:17 -07:00

37 lines
1.2 KiB
HTML

<style type="text/css">
.eiptable .title {
width: 67%;
}
.eiptable .author {
width: 33%;
}
</style>
{% for status in site.data.statuses %}
{% assign eips = include.eips|where:"status",status|sort:"eip" %}
{% assign count = eips|size %}
{% if count > 0 %}
<h2 id="{{status|slugify}}">{{status}}</h2>
<table class="eiptable">
<thead>
{% if status == "Last Call" %}
<tr>
<th class="eipnum">Number</th><th class="date">Review ends</th><th class="title">Title</th><th class="author">Author</th></tr>
{% else %}
<tr><th class="eipnum">Number</th><th class="title">Title</th><th class="author">Author</th></tr>
{% endif %}
</thead>
{% for page in eips %}
<tr>
<td class="eipnum"><a href="{{page.url|relative_url}}">{{page.eip|xml_escape}}</a></td>
{% if status == "Last Call" and page.last-call-deadline != undefined %}
<td class="date">{{ page.last-call-deadline | xml_escape }}</td>
{% endif %}
<td class="title">{{page.title|xml_escape}}</td>
<td class="author">{% include authorlist.html authors=page.author %}</td>
</tr>
{% endfor %}
</table>
{% endif %}
{% endfor %}