aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-09-10 12:01:06 +0200
committerMichał Górny <mgorny@gentoo.org>2017-10-12 22:47:59 +0200
commit90827ade43d5676cdcfbe17f8e52876b19f4da80 (patch)
treeab7080e569e8d876b59c1e84cc09b098f4259d50 /inside-gentoo/gleps/index.html
parentInitial support for listing and displaying GLEPs (diff)
downloadwww-90827ade43d5676cdcfbe17f8e52876b19f4da80.tar.gz
www-90827ade43d5676cdcfbe17f8e52876b19f4da80.tar.bz2
www-90827ade43d5676cdcfbe17f8e52876b19f4da80.zip
gleps: Split the big table like the old project page
Diffstat (limited to 'inside-gentoo/gleps/index.html')
-rw-r--r--inside-gentoo/gleps/index.html80
1 files changed, 73 insertions, 7 deletions
diff --git a/inside-gentoo/gleps/index.html b/inside-gentoo/gleps/index.html
index fe1ce4c..1f20ff0 100644
--- a/inside-gentoo/gleps/index.html
+++ b/inside-gentoo/gleps/index.html
@@ -13,7 +13,7 @@ layout: page-nav3
body_class: nav-align-h2
---
-<h2>Published GLEPs</h2>
+<h2>Implemented GLEPs (Final or Active)</h2>
<table class="table table-condensed table-striped">
<tr>
@@ -23,11 +23,77 @@ body_class: nav-align-h2
<th>Title</th>
</tr>
{% for entry in site.data.gleps %}
- <tr>
- <td><a href='{{ entry.url }}'>{{ entry.number | xml_escape }}</a></td>
- <td>{{ entry.type | xml_escape }}</td>
- <td>{{ entry.status | xml_escape }}</td>
- <td>{{ entry.title | xml_escape }}</td>
- </tr>
+ {% if entry.status == 'Active' or entry.status == 'Final' %}
+ <tr>
+ <td><a href='{{ entry.url }}'>{{ entry.number | xml_escape }}</a></td>
+ <td>{{ entry.type | xml_escape }}</td>
+ <td>{{ entry.status | xml_escape }}</td>
+ <td>{{ entry.title | xml_escape }}</td>
+ </tr>
+ {% endif %}
+ {% endfor %}
+</table>
+
+<h2>Accepted but not implemented GLEPs (Accepted)</h2>
+
+<table class="table table-condensed table-striped">
+ <tr>
+ <th>GLEP number</th>
+ <th>Type</th>
+ <th>Status</th>
+ <th>Title</th>
+ </tr>
+ {% for entry in site.data.gleps %}
+ {% if entry.status == 'Accepted' %}
+ <tr>
+ <td><a href='{{ entry.url }}'>{{ entry.number | xml_escape }}</a></td>
+ <td>{{ entry.type | xml_escape }}</td>
+ <td>{{ entry.status | xml_escape }}</td>
+ <td>{{ entry.title | xml_escape }}</td>
+ </tr>
+ {% endif %}
+ {% endfor %}
+</table>
+
+<h2>Draft GLEPs (Drafts)</h2>
+
+<table class="table table-condensed table-striped">
+ <tr>
+ <th>GLEP number</th>
+ <th>Type</th>
+ <th>Status</th>
+ <th>Title</th>
+ </tr>
+ {% for entry in site.data.gleps %}
+ {% if entry.status == 'Draft' %}
+ <tr>
+ <td><a href='{{ entry.url }}'>{{ entry.number | xml_escape }}</a></td>
+ <td>{{ entry.type | xml_escape }}</td>
+ <td>{{ entry.status | xml_escape }}</td>
+ <td>{{ entry.title | xml_escape }}</td>
+ </tr>
+ {% endif %}
+ {% endfor %}
+</table>
+
+<h2>Deferred, Rejected, Withdrawn, or Moribund GLEPs</h2>
+
+<table class="table table-condensed table-striped">
+ <tr>
+ <th>GLEP number</th>
+ <th>Type</th>
+ <th>Status</th>
+ <th>Title</th>
+ </tr>
+ {% for entry in site.data.gleps %}
+ {% if entry.status != 'Active' and entry.status != 'Final'
+ and entry.status != 'Accepted' and entry.status != 'Draft' %}
+ <tr>
+ <td><a href='{{ entry.url }}'>{{ entry.number | xml_escape }}</a></td>
+ <td>{{ entry.type | xml_escape }}</td>
+ <td>{{ entry.status | xml_escape }}</td>
+ <td>{{ entry.title | xml_escape }}</td>
+ </tr>
+ {% endif %}
{% endfor %}
</table>