Skip to content

Commit e3aea9c

Browse files
authored
Merge pull request #124 from w3c/tr-deliverer
replace editors with WG
2 parents 00fe62f + 61169b6 commit e3aea9c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

templates/components/listings/publications/tr_card.html.twig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
</div>
1818
{% endif %}
1919
{% endblock tags %}
20-
{% block editors %}
21-
{% if spec.editors|length > 0 %}
20+
{% block deliverers %}
21+
{% if spec.deliverers|filter(d => d.group.shortname != 'unknownwg' and d.group.groupType != 'coord')|length > 0 %}
2222
<div>
23-
<dt>Editors</dt>
24-
{% for editor in spec.editors|map(e => "#{e.user.name}") -%}
25-
<dd>{{ editor }}</dd>
23+
<dt>Deliverers</dt>
24+
{% for deliverer in spec.deliverers -%}
25+
<dd><a href="{{ path('groups_show_about', {'type': deliverer.group.groupType, 'shortname': deliverer.group.shortname })}}">{{ deliverer.group.name }}</a></dd>
2626
{% endfor -%}
2727
</div>
2828
{% endif %}
29-
{% endblock editors %}
29+
{% endblock deliverers %}
3030
{% block translations %}
3131
{% if spec.translations and spec.translations.translations|length > 0 %}
3232
<div class="translation-list">

0 commit comments

Comments
 (0)