From e19d4ce0ba2689a4450478201212985f35a88b0f Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Thu, 26 Sep 2019 19:55:54 -0700 Subject: DOC: Only list "Active" NEPs under "Meta-NEPs" In particular, NEP 23 (which is only a draft) is currently listed under both "Meta-NEPs" *and* "Open NEPs". It should only be in the later. --- doc/neps/index.rst.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/neps/index.rst.tmpl b/doc/neps/index.rst.tmpl index 0ad8e0f80..4c5b7766f 100644 --- a/doc/neps/index.rst.tmpl +++ b/doc/neps/index.rst.tmpl @@ -23,7 +23,7 @@ Meta-NEPs (NEPs about NEPs or Processes) .. toctree:: :maxdepth: 1 -{% for nep, tags in neps.items() if tags['Type'] == 'Process' %} +{% for nep, tags in neps.items() if tags['Status'] == 'Active' %} {{ tags['Title'] }} <{{ tags['Filename'] }}> {% endfor %} -- cgit v1.2.1