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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/modals/catalog_cite.inc (-2 / +2 lines)
Lines 4-15 Link Here
4
    <div class="modal-dialog modal-lg">
4
    <div class="modal-dialog modal-lg">
5
        <div class="modal-content">
5
        <div class="modal-content">
6
            <div class="modal-header">
6
            <div class="modal-header">
7
                <h3 class="modal-title" id="citeModalLabel">[% biblio.title | html %]</h3>
7
                <h1 class="modal-title" id="citeModalLabel">[% biblio.title | html %]</h1>
8
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
8
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
9
            </div>
9
            </div>
10
            <div class="modal-body">
10
            <div class="modal-body">
11
                [% FOREACH system IN cites.keys.sort %]
11
                [% FOREACH system IN cites.keys.sort %]
12
                    <h3>[% system | html %]</h3>
12
                    <h2>[% system | html %]</h2>
13
                    <p>[% cites.$system | html %]</p>
13
                    <p>[% cites.$system | html %]</p>
14
                [% END %]
14
                [% END %]
15
            </div>
15
            </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc (-2 / +2 lines)
Lines 1-14 Link Here
1
[% BLOCK shelfbrowser %]
1
[% BLOCK shelfbrowser %]
2
    [% IF OpenOPACShelfBrowser %]
2
    [% IF OpenOPACShelfBrowser %]
3
        <div id="shelfbrowser">
3
        <div id="shelfbrowser">
4
            <h5 style="text-align: center;" tabindex="-1">
4
            <h2 style="text-align: center;" tabindex="-1">
5
                [%- IF ( starting_homebranch ) %]<span>Browsing [% starting_homebranch | html %] shelves</span>[% END -%]
5
                [%- IF ( starting_homebranch ) %]<span>Browsing [% starting_homebranch | html %] shelves</span>[% END -%]
6
                [%- IF ( starting_homebranch && starting_location ) %],[% END %]
6
                [%- IF ( starting_homebranch && starting_location ) %],[% END %]
7
                [%- IF ( starting_location ) %]<span>Shelving location:</span> [%- starting_location | html -%][% END -%]
7
                [%- IF ( starting_location ) %]<span>Shelving location:</span> [%- starting_location | html -%][% END -%]
8
                [%- IF ( starting_homebranch && starting_ccode ) %],[% END %]
8
                [%- IF ( starting_homebranch && starting_ccode ) %],[% END %]
9
                [%- IF ( starting_ccode ) %]<span>Collection: [%- starting_ccode | html -%]</span>[% END -%]
9
                [%- IF ( starting_ccode ) %]<span>Collection: [%- starting_ccode | html -%]</span>[% END -%]
10
                <a style="font-size: 75%;" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]" class="close_shelf">Close shelf browser <span class="sr-only">(Hides shelf browser)</span></a>
10
                <a style="font-size: 75%;" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]" class="close_shelf">Close shelf browser <span class="sr-only">(Hides shelf browser)</span></a>
11
            </h5>
11
            </h2>
12
12
13
            <table class="table">
13
            <table class="table">
14
                <tr>
14
                <tr>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-curbside-pickups.tt (-1 / +1 lines)
Lines 106-112 Link Here
106
            </div>
106
            </div>
107
            <div class="col-md-12 col-lg-10 order-1">
107
            <div class="col-md-12 col-lg-10 order-1">
108
                <div id="pickupdetails" class="maincontent">
108
                <div id="pickupdetails" class="maincontent">
109
                    <h2>Curbside pickups</h2>
109
                    <h1>Curbside pickups</h1>
110
110
111
                    [% FOR m IN messages %]
111
                    [% FOR m IN messages %]
112
                        [% SET alert_type = "alert alert-info" %]
112
                        [% SET alert_type = "alert alert-info" %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-2 / +3 lines)
Lines 86-98 Link Here
86
                        [% SET show_author = Koha.Preference('NewsAuthorDisplay') == 'opac' || Koha.Preference('NewsAuthorDisplay') == 'both' %]
86
                        [% SET show_author = Koha.Preference('NewsAuthorDisplay') == 'opac' || Koha.Preference('NewsAuthorDisplay') == 'both' %]
87
                        [% FOREACH koha_new IN koha_news.content %]
87
                        [% FOREACH koha_new IN koha_news.content %]
88
                            <div class="newsitem">
88
                            <div class="newsitem">
89
                                <h4 class="newsheader">
89
                                <h2 class="newsheader">
90
                                    [% IF ( news_item ) %]
90
                                    [% IF ( news_item ) %]
91
                                        [% koha_new.title | html %]
91
                                        [% koha_new.title | html %]
92
                                    [% ELSE %]
92
                                    [% ELSE %]
93
                                        <a id="newsitem[% koha_new.additional_content.id | html %]" href="/cgi-bin/koha/opac-main.pl?news_id=[% koha_new.additional_content.id | uri %]">[% koha_new.title | html %]</a>
93
                                        <a id="newsitem[% koha_new.additional_content.id | html %]" href="/cgi-bin/koha/opac-main.pl?news_id=[% koha_new.additional_content.id | uri %]">[% koha_new.title | html %]</a>
94
                                    [% END %]
94
                                    [% END %]
95
                                </h4>
95
                                </h2>
96
                                <div class="newsbody">[% koha_new.content | $raw %]</div>
96
                                <div class="newsbody">[% koha_new.content | $raw %]</div>
97
                                <div class="newsfooter">
97
                                <div class="newsfooter">
98
                                    Published on [% koha_new.published_on | $KohaDates %]
98
                                    Published on [% koha_new.published_on | $KohaDates %]
Lines 167-172 Link Here
167
                                    <form action="/cgi-bin/koha/opac-user.pl" method="post" name="auth" id="auth" autocomplete="off">
167
                                    <form action="/cgi-bin/koha/opac-user.pl" method="post" name="auth" id="auth" autocomplete="off">
168
                                        [% INCLUDE 'csrf-token.inc' %]
168
                                        [% INCLUDE 'csrf-token.inc' %]
169
                                        <input type="hidden" name="koha_login_context" value="opac" />
169
                                        <input type="hidden" name="koha_login_context" value="opac" />
170
                                        <h2 class="sr-only">Login form</h2>
170
                                        <fieldset class="brief">
171
                                        <fieldset class="brief">
171
                                            <legend>Log in to your account:</legend>
172
                                            <legend>Log in to your account:</legend>
172
                                            [% IF ( Koha.Preference('GoogleOpenIDConnect') == 1 ) %]
173
                                            [% IF ( Koha.Preference('GoogleOpenIDConnect') == 1 ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (+10 lines)
Lines 152-157 Link Here
152
                    [% IF has_guarantor_flag && !Koha.Preference('OPACPrivacy') && ( Koha.Preference('AllowPatronToSetCheckoutsVisibilityForGuarantor') || Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') ) %]
152
                    [% IF has_guarantor_flag && !Koha.Preference('OPACPrivacy') && ( Koha.Preference('AllowPatronToSetCheckoutsVisibilityForGuarantor') || Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') ) %]
153
                        <div class="row">
153
                        <div class="row">
154
                            <div class="col">
154
                            <div class="col">
155
                                <h2 class="sr-only">Privacy</h2>
155
                                <fieldset class="rows" id="memberentry_privacy">
156
                                <fieldset class="rows" id="memberentry_privacy">
156
                                    <legend id="privacy_legend">Privacy</legend>
157
                                    <legend id="privacy_legend">Privacy</legend>
157
                                    <ol>
158
                                    <ol>
Lines 228-233 Link Here
228
                        [% UNLESS ( hidden.defined('cardnumber') || ( !borrower && Koha.Preference('autoMemberNum') ) ) && hidden.defined('dateexpiry') && hidden.defined('branchcode') && hidden.defined('categorycode') %]
229
                        [% UNLESS ( hidden.defined('cardnumber') || ( !borrower && Koha.Preference('autoMemberNum') ) ) && hidden.defined('dateexpiry') && hidden.defined('branchcode') && hidden.defined('categorycode') %]
229
                            <div class="row">
230
                            <div class="row">
230
                                <div class="col">
231
                                <div class="col">
232
                                    <h2 class="sr-only">Library</h2>
231
                                    <fieldset class="rows" id="memberentry_library">
233
                                    <fieldset class="rows" id="memberentry_library">
232
                                        <legend id="library_legend">Library</legend>
234
                                        <legend id="library_legend">Library</legend>
233
                                        <ol>
235
                                        <ol>
Lines 373-378 Link Here
373
                        [% UNLESS hidden.defined('title') && hidden.defined('surname') && hidden.defined('firstname') && hidden.defined('preferred_name') && hidden.defined('middle_name') && hidden.defined('dateofbirth') && hidden.defined('initials') && hidden.defined('pronouns') && hidden.defined('othernames') && hidden.defined('sex') %]
375
                        [% UNLESS hidden.defined('title') && hidden.defined('surname') && hidden.defined('firstname') && hidden.defined('preferred_name') && hidden.defined('middle_name') && hidden.defined('dateofbirth') && hidden.defined('initials') && hidden.defined('pronouns') && hidden.defined('othernames') && hidden.defined('sex') %]
374
                            <div class="row">
376
                            <div class="row">
375
                                <div class="col">
377
                                <div class="col">
378
                                    <h2 class="sr-only">Identity</h2>
376
                                    <fieldset class="rows" id="memberentry_identity">
379
                                    <fieldset class="rows" id="memberentry_identity">
377
                                        <legend id="identity_legend">Identity</legend>
380
                                        <legend id="identity_legend">Identity</legend>
378
381
Lines 519-524 Link Here
519
                        [% UNLESS hidden.defined('streetnumber') && hidden.defined('address') && hidden.defined('address2') && hidden.defined('city') && hidden.defined('state') && hidden.defined('zipcode') && hidden.defined('country') %]
522
                        [% UNLESS hidden.defined('streetnumber') && hidden.defined('address') && hidden.defined('address2') && hidden.defined('city') && hidden.defined('state') && hidden.defined('zipcode') && hidden.defined('country') %]
520
                            <div class="row">
523
                            <div class="row">
521
                                <div class="col">
524
                                <div class="col">
525
                                    <h2 class="sr-only">Main address</h2>
522
                                    <fieldset class="rows" id="memberentry_mainaddress">
526
                                    <fieldset class="rows" id="memberentry_mainaddress">
523
                                        <legend id="mainaddress_legend">Main address</legend>
527
                                        <legend id="mainaddress_legend">Main address</legend>
524
528
Lines 613-618 Link Here
613
                        [% UNLESS hidden.defined('phone') && hidden.defined('phonepro') && hidden.defined('mobile') && hidden.defined('email') && hidden.defined('emailpro') && hidden.defined('fax') %]
617
                        [% UNLESS hidden.defined('phone') && hidden.defined('phonepro') && hidden.defined('mobile') && hidden.defined('email') && hidden.defined('emailpro') && hidden.defined('fax') %]
614
                            <div class="row">
618
                            <div class="row">
615
                                <div class="col">
619
                                <div class="col">
620
                                    <h2 class="sr-only">Contact information</h2>
616
                                    <fieldset class="rows" id="memberentry_contact">
621
                                    <fieldset class="rows" id="memberentry_contact">
617
                                        <legend id="contact_legend">Contact information</legend>
622
                                        <legend id="contact_legend">Contact information</legend>
618
623
Lines 785-790 Link Here
785
                        [% UNLESS hidden.defined('B_streetnumber') && hidden.defined('B_address') && hidden.defined('B_address2') && hidden.defined('B_city') && hidden.defined('B_state') && hidden.defined('B_zipcode') && hidden.defined('B_country') && hidden.defined('B_phone') && hidden.defined('B_email') && hidden.defined('contactnote') %]
790
                        [% UNLESS hidden.defined('B_streetnumber') && hidden.defined('B_address') && hidden.defined('B_address2') && hidden.defined('B_city') && hidden.defined('B_state') && hidden.defined('B_zipcode') && hidden.defined('B_country') && hidden.defined('B_phone') && hidden.defined('B_email') && hidden.defined('contactnote') %]
786
                            <div class="row">
791
                            <div class="row">
787
                                <div class="col">
792
                                <div class="col">
793
                                    <h2 class="sr-only">Alternate address</h2>
788
                                    <fieldset class="rows" id="memberentry_alternateaddress">
794
                                    <fieldset class="rows" id="memberentry_alternateaddress">
789
                                        <legend id="alternateaddress_legend">Alternate address</legend>
795
                                        <legend id="alternateaddress_legend">Alternate address</legend>
790
796
Lines 905-910 Link Here
905
                        [% UNLESS hidden.defined('altcontactsurname') && hidden.defined('altcontactfirstname') && hidden.defined('altcontactaddress1') && hidden.defined('altcontactaddress2') && hidden.defined('altcontactaddress3') && hidden.defined('altcontactstate') && hidden.defined('altcontactzipcode') && hidden.defined('altcontactcountry') && hidden.defined('altcontactphone') %]
911
                        [% UNLESS hidden.defined('altcontactsurname') && hidden.defined('altcontactfirstname') && hidden.defined('altcontactaddress1') && hidden.defined('altcontactaddress2') && hidden.defined('altcontactaddress3') && hidden.defined('altcontactstate') && hidden.defined('altcontactzipcode') && hidden.defined('altcontactcountry') && hidden.defined('altcontactphone') %]
906
                            <div class="row">
912
                            <div class="row">
907
                                <div class="col">
913
                                <div class="col">
914
                                    <h2 class="sr-only">Alternate contact</h2>
908
                                    <fieldset class="rows" id="memberentry_alternatecontact">
915
                                    <fieldset class="rows" id="memberentry_alternatecontact">
909
                                        <legend id="alternatecontact_legend">Alternate contact</legend>
916
                                        <legend id="alternatecontact_legend">Alternate contact</legend>
910
917
Lines 1006-1011 Link Here
1006
                        [% UNLESS op == 'edit' || hidden.defined('password') %]
1013
                        [% UNLESS op == 'edit' || hidden.defined('password') %]
1007
                            <div class="row">
1014
                            <div class="row">
1008
                                <div class="col">
1015
                                <div class="col">
1016
                                    <h2 class="sr-only">Password</h2>
1009
                                    <fieldset class="rows" id="memberentry_password">
1017
                                    <fieldset class="rows" id="memberentry_password">
1010
                                        <legend id="contact_legend">Password</legend>
1018
                                        <legend id="contact_legend">Password</legend>
1011
                                        <div class="alert alert-info">
1019
                                        <div class="alert alert-info">
Lines 1122-1127 Link Here
1122
                        [% IF Koha.Preference('PrivacyPolicyConsent') && op != 'edit' %]
1130
                        [% IF Koha.Preference('PrivacyPolicyConsent') && op != 'edit' %]
1123
                            <div class="row">
1131
                            <div class="row">
1124
                                <div class="col">
1132
                                <div class="col">
1133
                                    <h2 class="sr-only">Data privacy policy consent</h2>
1125
                                    <fieldset class="rows" id="memberentry_gdpr_consent">
1134
                                    <fieldset class="rows" id="memberentry_gdpr_consent">
1126
                                        <legend>Data privacy policy consent</legend>
1135
                                        <legend>Data privacy policy consent</legend>
1127
                                        <ol>
1136
                                        <ol>
Lines 1145-1150 Link Here
1145
                        [% UNLESS op == 'edit' %]
1154
                        [% UNLESS op == 'edit' %]
1146
                            <div class="row">
1155
                            <div class="row">
1147
                                <div class="col">
1156
                                <div class="col">
1157
                                    <h2 class="sr-only">Verification</h2>
1148
                                    <fieldset class="rows" id="memberentry_captcha">
1158
                                    <fieldset class="rows" id="memberentry_captcha">
1149
                                        <legend>Verification</legend>
1159
                                        <legend>Verification</legend>
1150
                                        <ol>
1160
                                        <ol>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-recalls.tt (-1 / +1 lines)
Lines 26-32 Link Here
26
            </div>
26
            </div>
27
            <div class="col-md-12 col-lg-10 order-1 order-lg-2">
27
            <div class="col-md-12 col-lg-10 order-1 order-lg-2">
28
                <div id="recalls" class="maincontent">
28
                <div id="recalls" class="maincontent">
29
                    <h2>Recalls history</h2>
29
                    <h1>Recalls history</h1>
30
                    [% IF Koha.Preference('UseRecalls') %]
30
                    [% IF Koha.Preference('UseRecalls') %]
31
                        [% IF RECALLS.count %]
31
                        [% IF RECALLS.count %]
32
                            <div id="opac-user-recalls">
32
                            <div id="opac-user-recalls">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +2 lines)
Lines 602-608 Link Here
602
                                                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
602
                                                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
603
                                                </div>
603
                                                </div>
604
                                                <div class="modal-body" id="addNoteBody">
604
                                                <div class="modal-body" id="addNoteBody">
605
                                                    <h6 id="addNoteTitle"></h6>
605
                                                    <h2 id="addNoteTitle"></h2>
606
                                                    <input type="hidden" id="addNoteIssueId" name="issue_id" value="" />
606
                                                    <input type="hidden" id="addNoteIssueId" name="issue_id" value="" />
607
                                                    <textarea name="note" id="addNote" rows="4"></textarea>
607
                                                    <textarea name="note" id="addNote" rows="4"></textarea>
608
                                                    <div class="hint">Your note will be shown to the librarian when the item is checked in.</div>
608
                                                    <div class="hint">Your note will be shown to the librarian when the item is checked in.</div>
Lines 1045-1051 Link Here
1045
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
1045
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
1046
                </div>
1046
                </div>
1047
                <div class="modal-body">
1047
                <div class="modal-body">
1048
                    <h6 id="suspendHoldTitle"></h6>
1048
                    <h2 id="suspendHoldTitle"></h2>
1049
                    <input type="hidden" name="reserve_id" id="suspendHoldReserveId" value="" />
1049
                    <input type="hidden" name="reserve_id" id="suspendHoldReserveId" value="" />
1050
                    <label for="suspend_untilDate">Suspend until:</label>
1050
                    <label for="suspend_untilDate">Suspend until:</label>
1051
                    <input type="text" name="suspend_until" id="suspend_untilDate" size="10" />
1051
                    <input type="text" name="suspend_until" id="suspend_untilDate" size="10" />
1052
- 

Return to bug 39356