From 33990a9d4adba837825d46d055f766edaaa1df66 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. --- .../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 3be8621f0c0..85cc327cfee 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.43.0