diff --git a/i2p2www/pages/spec/proposal-show.html b/i2p2www/pages/spec/proposal-show.html index afddd13c835309f932d452bb30c42e6d6dfb6a5c..0ed30577ec8152bd15d7854da75c3ad3b6339911 100644 --- a/i2p2www/pages/spec/proposal-show.html +++ b/i2p2www/pages/spec/proposal-show.html @@ -12,6 +12,10 @@ <dd>{{ meta.num }}</dd> <dt>Author</dt> <dd>{{ meta.author }}</dd> + {% if meta.editor -%} + <dt>Editor</dt> + <dd>{{ meta.editor }}</dd> + {%- endif %} <dt>Created</dt> <dd><time datetime="{{ meta.created }}">{{ meta.created }}</time></dd> <dt>Thread</dt> diff --git a/i2p2www/spec/views.py b/i2p2www/spec/views.py index 55f72cdf7e699bd6db52fc8c607b08915c34e400..1e938afdec257956c18e01801cd231008939dcd4 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',