From 019eff289ba9db77096b9d38dd5e8d0428b6772a Mon Sep 17 00:00:00 2001
From: Martin Renvoize
Date: Thu, 28 Nov 2019 18:23:44 +0000
Subject: [PATCH] Maintanence team template corrections
Signed-off-by: Martin Renvoize
---
.../prog/en/includes/about-team.inc | 38 ++++++++++++++++---
1 file changed, 33 insertions(+), 5 deletions(-)
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 9cc01325f9..9fc4800130 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc
+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc
@@ -68,14 +68,28 @@
team will be elected.
Release maintainer:
-
[% FOREACH m IN t.maintainer %]
- [% IF m.version == ( v - 0.01 ) %]
- - [% INCLUDE person p=m %]
+ [% IF m.version == ( v ) %]
+ [% INCLUDE person p=m %]
[% END %]
[% END %]
-
+
+ [% IF t.maintainer_assistants %]
+ [% FOREACH m IN t.maintainer_assistants %]
+ [% IF m.version == ( v ) %]
+ - Assistant: [% INCLUDE person p=m %]
+ [% END %]
+ [% END %]
+ [% END %]
+
+ [% IF t.maintainer_mentors %]
+ [% FOREACH m IN t.maintainer_mentors %]
+ [% IF m.version == ( v ) %]
+ - Mentor: [% INCLUDE person p=m %]
+ [% END %]
+ [% END %]
+ [% END %]
[% END %]
[% IF t.qa_manager %]
@@ -173,10 +187,24 @@
[% FOREACH m IN t.maintainer %]
- [% m.version | html %] - [% INCLUDE person p=m %]
+ [% IF t.maintainer_assistants %]
+ [% FOREACH ma IN t.maintainer_assistants %]
+ [% IF ma.version == ( m.version ) %]
+ - Assistant: [% INCLUDE person p=ma %]
+ [% END %]
+ [% END %]
+ [% END %]
+
+ [% IF t.maintainer_mentors %]
+ [% FOREACH mm IN t.maintainer_mentors %]
+ [% IF m.version == ( mm.version ) %]
+ - Mentor: [% INCLUDE person p=mm %]
+ [% END %]
+ [% END %]
+ [% END %]
[% END %]
[% END %]
-
[%- END -%]
--
2.39.5