From 74300e9908f45d7e26ff9d17c0cc23071bf7f20f Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 10 Jan 2024 11:39:15 +0000 Subject: [PATCH] Bug 35504: Add full maintainers list into development branch On a stable branch the current maintainer of your running version is listed at the top of the current maintanence team.. however when you're on a development branch the RM is responsible for your branch and the maintainers were missing from display. This patch adds the maintainers list back to the bottom of the current maintanence team section, just for the development branch. Signed-off-by: Katrin Fischer (cherry picked from commit 7fd998c1e7355aeb5635a94d25382125d192cd10) Signed-off-by: Fridolin Somers --- .../intranet-tmpl/prog/en/modules/about.tt | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index 69546a62c8..016fdfcf30 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -803,6 +803,30 @@

Current maintenance team

[% INCLUDE team t=maintenance_team v=short_version %] + [% IF development_version %] +
  • Release maintainers: +
      + [% FOREACH m IN maintenance_team.maintainer %] +
    • [% m.version | html %] - [% INCLUDE person p=m %]
    • + [% IF maintenance_team.maintainer_assistants %] + [% FOREACH ma IN maintenance_team.maintainer_assistants %] + [% IF ma.version == ( m.version ) %] +
      • Assistant: [% INCLUDE person p=ma %]
      + [% END %] + [% END %] + [% END %] + + [% IF maintenance_team.maintainer_mentors %] + [% FOREACH mm IN maintenance_team.maintainer_mentors %] + [% IF m.version == ( mm.version ) %] +
      • Mentor: [% INCLUDE person p=mm %]
      + [% END %] + [% END %] + [% END %] + [% END %] +
    +
  • + [% END %]
    [% ELSE %] -- 2.20.1