diff --git a/i2p2www/pages/spec/proposal-show.html b/i2p2www/pages/spec/proposal-show.html index afddd13c..0ed30577 100644 --- a/i2p2www/pages/spec/proposal-show.html +++ b/i2p2www/pages/spec/proposal-show.html @@ -12,6 +12,10 @@
{{ meta.num }}
Author
{{ meta.author }}
+ {% if meta.editor -%} +
Editor
+
{{ meta.editor }}
+ {%- endif %}
Created
Thread
diff --git a/i2p2www/spec/views.py b/i2p2www/spec/views.py index 55f72cdf..1e938afd 100644 --- a/i2p2www/spec/views.py +++ b/i2p2www/spec/views.py @@ -41,6 +41,7 @@ SPEC_CATEGORY_SORT = defaultdict(lambda: 999, { PROPOSAL_METATAGS = { 'author': u'I2P devs', 'created': None, + 'editor': None, 'implementedin': None, 'lastupdated': None, 'status': u'Draft', @@ -72,6 +73,7 @@ METATAG_LABELS = { 'author': u'Author', 'category': u'Category', 'created': u'Created', + 'editor': u'Editor', 'implementedin': u'Implemented in', 'lastupdated': u'Last updated', 'status': u'Status',