View | Details | Raw Unified | Return to bug 21626
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-2 / +10 lines)
Lines 4305-4317 input.renew { Link Here
4305
}
4305
}
4306
4306
4307
.columns-3 {
4307
.columns-3 {
4308
    columns: 3 auto;
4309
    column-gap: 2.5em;
4308
    column-gap: 2.5em;
4309
    columns: 3 auto;
4310
4311
    li {
4312
        break-inside: avoid;
4313
    }
4310
}
4314
}
4311
4315
4312
.columns-4 {
4316
.columns-4 {
4313
    columns: 4 auto;
4314
    column-gap: 2em;
4317
    column-gap: 2em;
4318
    columns: 4 auto;
4319
4320
    li {
4321
        break-inside: avoid;
4322
    }
4315
}
4323
}
4316
4324
4317
// ==== MODULE LINKS - End ====
4325
// ==== MODULE LINKS - End ====
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/about-team.inc (-9 / +9 lines)
Lines 39-50 Link Here
39
[%- END -%]
39
[%- END -%]
40
40
41
[%- BLOCK team -%]
41
[%- BLOCK team -%]
42
    <ul>
42
    <ul class="columns-3">
43
43
44
        [% IF v == 'release' %]
44
        [% IF v == 'release' %]
45
            <p>This is the team who were responsible for the initial release of your currently installed Koha version.</p>
45
            <li>
46
46
                This is the team who were responsible for the initial release of your currently installed Koha version.
47
            <li><strong>Release manager:</strong>
47
            </li>
48
            <li>
49
                <strong>Release manager:</strong>
48
                [% INCLUDE person p=t.manager %]
50
                [% INCLUDE person p=t.manager %]
49
            </li>
51
            </li>
50
52
Lines 63-73 Link Here
63
            [% END %]
65
            [% END %]
64
66
65
        [% ELSE %]
67
        [% ELSE %]
66
            <p>This is the team who are responsible for the next release of Koha and the ongoing maintenance of your
68
            <li>
67
            currently installed Koha version. They will be in these roles up until <strong>[% t.release_date | $KohaDates %]</strong>, when the next
69
                <p>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 <strong>[% t.release_date | $KohaDates %]</strong>, when the next team will be elected.</p>
68
            team will be elected.</p>
70
                <strong>Release maintainer:</strong>
69
70
            <li><strong>Release maintainer:</strong>
71
                <ul>
71
                <ul>
72
                  [% FOREACH m IN t.maintainer %]
72
                  [% FOREACH m IN t.maintainer %]
73
                    [% IF m.version == ( v - 0.01 ) %]
73
                    [% IF m.version == ( v - 0.01 ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-4 / +4 lines)
Lines 406-412 Link Here
406
406
407
            <h2>Koha release teams</h2>
407
            <h2>Koha release teams</h2>
408
            <div class="row">
408
            <div class="row">
409
                <div class="col-md-6">
409
                <div class="col-md-12">
410
                    <h3>Koha [% short_version | html %] release team</h3>
410
                    <h3>Koha [% short_version | html %] release team</h3>
411
                    [% IF development_version %]
411
                    [% IF development_version %]
412
                        <p>You are running a development version of Koha</p>
412
                        <p>You are running a development version of Koha</p>
Lines 414-421 Link Here
414
                        [% INCLUDE team t=release_team v='release' %]
414
                        [% INCLUDE team t=release_team v='release' %]
415
                    [% END %]
415
                    [% END %]
416
                </div>
416
                </div>
417
417
            </div>
418
                <div class="col-md-6">
418
            <div class="row">
419
                <div class="col-md-12">
419
                    <h3>Current maintenance team</h3>
420
                    <h3>Current maintenance team</h3>
420
                    [% INCLUDE team t=maintenance_team v=short_version %]
421
                    [% INCLUDE team t=maintenance_team v=short_version %]
421
                </div>
422
                </div>
422
- 

Return to bug 21626