From 90827ade43d5676cdcfbe17f8e52876b19f4da80 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sun, 10 Sep 2017 12:01:06 +0200 Subject: gleps: Split the big table like the old project page --- inside-gentoo/gleps/index.html | 80 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 73 insertions(+), 7 deletions(-) (limited to 'inside-gentoo/gleps') 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 --- -

Published GLEPs

+

Implemented GLEPs (Final or Active)

@@ -23,11 +23,77 @@ body_class: nav-align-h2 {% for entry in site.data.gleps %} - - - - - - + {% if entry.status == 'Active' or entry.status == 'Final' %} + + + + + + + {% endif %} + {% endfor %} +
Title
{{ entry.number | xml_escape }}{{ entry.type | xml_escape }}{{ entry.status | xml_escape }}{{ entry.title | xml_escape }}
{{ entry.number | xml_escape }}{{ entry.type | xml_escape }}{{ entry.status | xml_escape }}{{ entry.title | xml_escape }}
+ +

Accepted but not implemented GLEPs (Accepted)

+ + + + + + + + + {% for entry in site.data.gleps %} + {% if entry.status == 'Accepted' %} + + + + + + + {% endif %} + {% endfor %} +
GLEP numberTypeStatusTitle
{{ entry.number | xml_escape }}{{ entry.type | xml_escape }}{{ entry.status | xml_escape }}{{ entry.title | xml_escape }}
+ +

Draft GLEPs (Drafts)

+ + + + + + + + + {% for entry in site.data.gleps %} + {% if entry.status == 'Draft' %} + + + + + + + {% endif %} + {% endfor %} +
GLEP numberTypeStatusTitle
{{ entry.number | xml_escape }}{{ entry.type | xml_escape }}{{ entry.status | xml_escape }}{{ entry.title | xml_escape }}
+ +

Deferred, Rejected, Withdrawn, or Moribund GLEPs

+ + + + + + + + + {% for entry in site.data.gleps %} + {% if entry.status != 'Active' and entry.status != 'Final' + and entry.status != 'Accepted' and entry.status != 'Draft' %} + + + + + + + {% endif %} {% endfor %}
GLEP numberTypeStatusTitle
{{ entry.number | xml_escape }}{{ entry.type | xml_escape }}{{ entry.status | xml_escape }}{{ entry.title | xml_escape }}
-- cgit v1.2.3-65-gdbad