From c537538a8c567141b522ae20cbb3b14056ca4564 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 25 May 2021 13:59:31 +0100 Subject: [PATCH] Bug 28442: Fix 'accessibility_advocate' for current release The accessibility_advocate block was positioned incorrectly so wasn't appearing properly for the current stable releases, only the development/maintainter block. This patch fixes that issue Signed-off-by: Jonathan Druart (cherry picked from commit 3b427d79d69579d78a6bb2784edacc64aa781934) Signed-off-by: Fridolin Somers (cherry picked from commit d7b4067d11d2c2301866ec63c0a94a6ce4845384) Signed-off-by: Victor Grousset/tuxayo --- .../prog/en/includes/about-team.inc | 41 +++++++++---------- 1 file changed, 20 insertions(+), 21 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 fcf189b662..f0574958e7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc @@ -46,7 +46,7 @@ [%- BLOCK team -%]
    - [% IF v == 'release' %] + [% IF v == 'release' %]

    This is the team who were responsible for the initial release of your currently installed Koha version.

  • Release manager: @@ -67,7 +67,7 @@
  • [% END %] - [% ELSE %] + [% 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.

    @@ -95,7 +95,7 @@ [% END %] [% END %] [% END %] - [% END %] + [% END %] [% IF t.qa_manager %]
  • Quality assurance manager: @@ -197,7 +197,21 @@
  • [% END %] - [% IF v != 'release' %] + [% IF t.accessibility_advocates %] +
  • Accessibility advocates: +
      + [% FOREACH a IN t.accessibility_advocates %] +
    • [% INCLUDE person p=a %]
    • + [% END %] +
    +
  • + [% ELSIF t.accessibility_advocate %] +
  • Accessibility advocate: + [% INCLUDE person p=t.accessibility_advocate %] +
  • + [% END %] + + [% IF v != 'release' %]
  • Release manager: [% INCLUDE person p=t.manager %] @@ -217,22 +231,7 @@
  • [% END %] - [% IF t.accessibility_advocate %] -
  • Accessibility advocate: - [% INCLUDE person p=t.accessibility_advocate %] -
  • - [% ELSIF t.accessibility_advocates %] -
  • Accessibility advocates: -
      - [% FOREACH a IN t.accessibility_advocates %] -
    • [% INCLUDE person p=a %]
    • - [% END %] -
    -
  • - [% END %] - - - [% ELSE %] + [% ELSE %]
  • Release maintainers:
      [% FOREACH m IN t.maintainer %] @@ -255,6 +254,6 @@ [% END %]
  • - [% END %] + [% END %]
[%- END -%] -- 2.20.1