From 8190fdb5bda236d762eb6f9e42e8c733c2408a14 Mon Sep 17 00:00:00 2001
From: Martin Renvoize
Date: Tue, 12 Dec 2023 11:48:47 +0000
Subject: [PATCH] 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
Signed-off-by: Lucas Gass
Signed-off-by: Katrin Fischer
---
docs/teams.yaml | 2 +-
.../prog/en/includes/about-team.inc | 53 ++++++++++++++++---
2 files changed, 46 insertions(+), 9 deletions(-)
diff --git a/docs/teams.yaml b/docs/teams.yaml
index 7e875affff..fc271aac03 100644
--- a/docs/teams.yaml
+++ b/docs/teams.yaml
@@ -1336,7 +1336,7 @@ team:
name: Matthias Meusburger
- area: CAS
name: Matthias Meusburger
- accessibility_advocate:
+ accessibility_advocates:
- name: Matt Blenkinsop
- name: Lucas Gass
bugwrangler:
diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc
index f53c6794eb..89ca110b1e 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc
+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc
@@ -69,8 +69,7 @@
[% ELSE %]
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 [% t.release_date | $KohaDates %], when the next
- team will be elected.
+ currently installed Koha version. They will be in these roles up until [% t.release_date | $KohaDates %], when the next team will be elected.
[% FOREACH m IN t.maintainer %]
[% IF m.version == ( v ) %]
@@ -139,12 +138,6 @@
[% END %]
- [% IF t.newsletter %]
- Newsletter editor:
- [% INCLUDE person p=t.newsletter %]
-
- [% END %]
-
[% IF t.translation %]
Translation manager:
[% INCLUDE person p=t.translation %]
@@ -177,6 +170,22 @@
[% END %]
[% END %]
+ [% IF t.packaging_assistant %]
+ [% IF t.packaging_assistant.size / 2 == 1 %]
+ Packaging assistant:
+ [% INCLUDE person p=t.packaging_assistant %]
+
+ [% ELSE %]
+ Packaging assistants:
+
+ [% FOREACH pa IN t.packaging_assistant %]
+ - [% INCLUDE person p = pa %]
+ [% END %]
+
+
+ [% END %]
+ [% END %]
+
[% IF t.ci %]
[% IF t.ci.size == 1 %]
Jenkins maintainer:
@@ -217,6 +226,34 @@
[% END %]
+ [% IF t.newsletter %]
+ Newsletter editor:
+ [% INCLUDE person p=t.newsletter %]
+
+ [% END %]
+
+ [% IF t.website %]
+ Website maintainer:
+ [% INCLUDE person p=t.website %]
+
+ [% END %]
+
+ [% IF t.wiki %]
+ [% IF t.wiki.size == 1 %]
+ Wiki manager:
+ [% INCLUDE person p=t.wiki %]
+
+ [% ELSE %]
+ Wiki team:
+
+ [% FOREACH wi IN t.wiki %]
+ - [% INCLUDE person p = wi %]
+ [% END %]
+
+
+ [% END %]
+ [% END %]
+
[% IF v != 'release' %]
Release manager:
--
2.39.5