Bug 35504: Corrections to team
Correction of 'advocate' to 'advocates' to ensure they appear in the team. Addition of 'website' and 'wiki' handling to ensure they also appear in the team. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
b9da22b490
commit
8190fdb5bd
2 changed files with 46 additions and 9 deletions
|
@ -1336,7 +1336,7 @@ team:
|
|||
name: Matthias Meusburger
|
||||
- area: CAS
|
||||
name: Matthias Meusburger
|
||||
accessibility_advocate:
|
||||
accessibility_advocates:
|
||||
- name: Matt Blenkinsop
|
||||
- name: Lucas Gass
|
||||
bugwrangler:
|
||||
|
|
|
@ -69,8 +69,7 @@
|
|||
|
||||
[% ELSE %]
|
||||
<p>This is the team who are responsible for the next release of Koha and the ongoing maintenance of your
|
||||
currently installed Koha version. They will be in these roles up until <strong>[% t.release_date | $KohaDates %]</strong>, when the next
|
||||
team will be elected.</p>
|
||||
currently installed Koha version. They will be in these roles up until <strong>[% t.release_date | $KohaDates %]</strong>, when the next team will be elected.</p>
|
||||
|
||||
[% FOREACH m IN t.maintainer %]
|
||||
[% IF m.version == ( v ) %]
|
||||
|
@ -139,12 +138,6 @@
|
|||
</li>
|
||||
[% END %]
|
||||
|
||||
[% IF t.newsletter %]
|
||||
<li><strong>Newsletter editor:</strong>
|
||||
[% INCLUDE person p=t.newsletter %]
|
||||
</li>
|
||||
[% END %]
|
||||
|
||||
[% IF t.translation %]
|
||||
<li><strong>Translation manager:</strong>
|
||||
[% INCLUDE person p=t.translation %]
|
||||
|
@ -177,6 +170,22 @@
|
|||
[% END %]
|
||||
[% END %]
|
||||
|
||||
[% IF t.packaging_assistant %]
|
||||
[% IF t.packaging_assistant.size / 2 == 1 %]
|
||||
<li><strong>Packaging assistant:</strong>
|
||||
[% INCLUDE person p=t.packaging_assistant %]
|
||||
</li>
|
||||
[% ELSE %]
|
||||
<li><strong>Packaging assistants:</strong>
|
||||
<ul>
|
||||
[% FOREACH pa IN t.packaging_assistant %]
|
||||
<li>[% INCLUDE person p = pa %]</li>
|
||||
[% END %]
|
||||
</ul>
|
||||
</li>
|
||||
[% END %]
|
||||
[% END %]
|
||||
|
||||
[% IF t.ci %]
|
||||
[% IF t.ci.size == 1 %]
|
||||
<li><strong>Jenkins maintainer:</strong>
|
||||
|
@ -217,6 +226,34 @@
|
|||
</li>
|
||||
[% END %]
|
||||
|
||||
[% IF t.newsletter %]
|
||||
<li><strong>Newsletter editor:</strong>
|
||||
[% INCLUDE person p=t.newsletter %]
|
||||
</li>
|
||||
[% END %]
|
||||
|
||||
[% IF t.website %]
|
||||
<li><strong>Website maintainer:</strong>
|
||||
[% INCLUDE person p=t.website %]
|
||||
</li>
|
||||
[% END %]
|
||||
|
||||
[% IF t.wiki %]
|
||||
[% IF t.wiki.size == 1 %]
|
||||
<li><strong>Wiki manager:</strong>
|
||||
[% INCLUDE person p=t.wiki %]
|
||||
</li>
|
||||
[% ELSE %]
|
||||
<li><strong>Wiki team:</strong>
|
||||
<ul>
|
||||
[% FOREACH wi IN t.wiki %]
|
||||
<li>[% INCLUDE person p = wi %]</li>
|
||||
[% END %]
|
||||
</ul>
|
||||
</li>
|
||||
[% END %]
|
||||
[% END %]
|
||||
|
||||
[% IF v != 'release' %]
|
||||
|
||||
<li><strong>Release manager:</strong>
|
||||
|
|
Loading…
Reference in a new issue