Skip to content

Commit 3a84279

Browse files
authored
Website: Update eip.html
Merged by EIP-Bot.
1 parent 25ebbff commit 3a84279

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

_includes/eiptable.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ <h2 id="{{status|slugify}}">{{status}}</h2>
1717
{% if status == "Last Call" %}
1818
<tr>
1919
<th class="eipnum">Number</th><th class="date">Review ends</th><th class="title">Title</th><th class="author">Author</th></tr>
20+
{% elsif status == "Withdrawn" %}
21+
<tr>
22+
<th class="eipnum">Number</th><th class="withdrawn-reason">Withdrawn Reason</th><th class="title">Title</th><th class="author">Author</th></tr>
2023
{% else %}
2124
<tr><th class="eipnum">Number</th><th class="title">Title</th><th class="author">Author</th></tr>
2225
{% endif %}

_layouts/eip.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ <h3>{{ page.description | xml_escape }}</h3>
8787
<td>{{ page.last-call-deadline }}</td>
8888
</tr>
8989
{% endif %}
90+
{% if page.withdrawal-reason != undefined %}
91+
<tr>
92+
<th scope="row">Withdrawal Reason</th>
93+
<td>{{ page.withdrawal-reason }}</td>
94+
</tr>
95+
{% endif %}
9096
{% if page.status != "Review" and page.status != "Last Call" and page.status != "Final" and page.discussions-to != undefined %}
9197
<tr>
9298
<th scope="row">Discussion Link</th>

0 commit comments

Comments
 (0)