Show review end date on website (#1842)

This commit is contained in:
William Entriken 2019-03-12 16:00:34 -04:00 committed by Nick Johnson
parent 9ce2e5f657
commit 963795f323
1 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,11 @@ layout: default
{% if page["discussions-to"] != undefined %} {% if page["discussions-to"] != undefined %}
<tr><th>Discussions-To</th><td><a href="{{ page["discussions-to"] | uri_escape }}">{{ page["discussions-to"] | xml_escape }}</a></td></tr> <tr><th>Discussions-To</th><td><a href="{{ page["discussions-to"] | uri_escape }}">{{ page["discussions-to"] | xml_escape }}</a></td></tr>
{% endif %} {% endif %}
<tr><th>Status</th><td>{{ page.status | xml_escape }}</td></tr> <tr><th>Status</th><td>{{ page.status | xml_escape }}
{% if page.review-period-end != undefined %}
<strong>(review ends {{ page.review-period-end | xml_escape }})</strong>
{% endif %}
</td></tr>
<tr><th>Type</th><td>{{ page.type | xml_escape }}</td></tr> <tr><th>Type</th><td>{{ page.type | xml_escape }}</td></tr>
{% if page.category != undefined %} {% if page.category != undefined %}
<tr><th>Category</th><td>{{ page.category | xml_escape }}</td></tr> <tr><th>Category</th><td>{{ page.category | xml_escape }}</td></tr>