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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc (-7 / +7 lines)
Lines 102-108 Link Here
102
                        <td class="status">
102
                        <td class="status">
103
                            <span class="tdlabel">Status:</span>
103
                            <span class="tdlabel">Status:</span>
104
                            [% IF ( HOLD.is_waiting ) %]
104
                            [% IF ( HOLD.is_waiting ) %]
105
                                <i class="fa fa-exclamation-circle text-warning"></i>
105
                                <i class="fa fa-exclamation-circle text-warning" aria-hidden="true"></i>
106
                                [% IF ( HOLD.is_at_destination ) %]
106
                                [% IF ( HOLD.is_at_destination ) %]
107
                                    [% IF ( HOLD.found ) %]
107
                                    [% IF ( HOLD.found ) %]
108
                                        Item waiting at <b> [% HOLD.branch.branchname | html %]</b>
108
                                        Item waiting at <b> [% HOLD.branch.branchname | html %]</b>
Lines 141-151 Link Here
141
                                    [% IF HOLD.suspend %]
141
                                    [% IF HOLD.suspend %]
142
                                        <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
142
                                        <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
143
                                            <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
143
                                            <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
144
                                            <button class="btn btn-link" type="submit" name="submit"><i class="fa fa-play"></i> Resume</button>
144
                                            <button class="btn btn-link" type="submit" name="submit"><i class="fa fa-play" aria-hidden="true"></i> Resume</button>
145
                                        </form>
145
                                        </form>
146
                                    [% ELSE %]
146
                                    [% ELSE %]
147
                                        [% IF AutoResumeSuspendedHolds %]
147
                                        [% IF AutoResumeSuspendedHolds %]
148
                                            <a class="btn btn-link js-show" href="#suspendModal[% HOLD.reserve_id | html %]" role="button" data-toggle="modal"><i class="fa fa-pause"></i> Suspend</a>
148
                                            <a class="btn btn-link js-show" href="#suspendModal[% HOLD.reserve_id | html %]" role="button" data-toggle="modal"><i class="fa fa-pause" aria-hidden="true"></i> Suspend</a>
149
                                            [% # hold suspend modal form %]
149
                                            [% # hold suspend modal form %]
150
                                            <div id="suspendModal[% HOLD.reserve_id | html %]" class="modal-nojs" tabindex="-1" role="dialog" aria-labelledby="suspendModal[% HOLD.reserve_id | html %]Label" aria-hidden="true">
150
                                            <div id="suspendModal[% HOLD.reserve_id | html %]" class="modal-nojs" tabindex="-1" role="dialog" aria-labelledby="suspendModal[% HOLD.reserve_id | html %]Label" aria-hidden="true">
151
                                                <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
151
                                                <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
Lines 174-180 Link Here
174
                                        [% ELSE %]
174
                                        [% ELSE %]
175
                                            <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
175
                                            <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
176
                                                <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
176
                                                <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
177
                                                <button class="btn btn-link" type="submit" name="submit"><i class="fa fa-pause"></i> Suspend</button>
177
                                                <button class="btn btn-link" type="submit" name="submit"><i class="fa fa-pause" aria-hidden="true"></i> Suspend</button>
178
                                            </form>
178
                                            </form>
179
                                        [% END # / IF AutoResumeSuspendedHolds %]
179
                                        [% END # / IF AutoResumeSuspendedHolds %]
180
                                    [% END # / IF HOLD.suspend %]
180
                                    [% END # / IF HOLD.suspend %]
Lines 187-193 Link Here
187
                                    <form id="delete_hold_[% HOLD.reserve_id | html %]" action="/cgi-bin/koha/opac-modrequest.pl" method="post">
187
                                    <form id="delete_hold_[% HOLD.reserve_id | html %]" action="/cgi-bin/koha/opac-modrequest.pl" method="post">
188
                                    <input type="hidden" name="biblionumber" value="[% HOLD.biblionumber | html %]" />
188
                                    <input type="hidden" name="biblionumber" value="[% HOLD.biblionumber | html %]" />
189
                                    <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
189
                                    <input type="hidden" name="reserve_id" value="[% HOLD.reserve_id | html %]" />
190
                                    <button data-title="[% INCLUDE 'biblio-title-head.inc' biblio=HOLD.biblio %]" data-reserve_id="[% HOLD.reserve_id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-hold"><i class="fa fa-remove"></i> Cancel</button>
190
                                    <button data-title="[% INCLUDE 'biblio-title-head.inc' biblio=HOLD.biblio %]" data-reserve_id="[% HOLD.reserve_id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-hold"><i class="fa fa-remove" aria-hidden="true"></i> Cancel</button>
191
                                </form>
191
                                </form>
192
                                [% END %]
192
                                [% END %]
193
                            </td>
193
                            </td>
Lines 201-207 Link Here
201
            [% UNLESS ( all_holds_waiting ) %]
201
            [% UNLESS ( all_holds_waiting ) %]
202
                <div>
202
                <div>
203
                    <form class="form-inline" id="suspend_all_holds" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
203
                    <form class="form-inline" id="suspend_all_holds" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
204
                        <button type="submit" id="suspend_all_submit" class="btn"><i class="fa fa-pause"></i> Suspend all holds</button>
204
                        <button type="submit" id="suspend_all_submit" class="btn"><i class="fa fa-pause" aria-hidden="true"></i> Suspend all holds</button>
205
                        <input type="hidden" name="suspend" value="1" />
205
                        <input type="hidden" name="suspend" value="1" />
206
206
207
                        [% IF AutoResumeSuspendedHolds %]
207
                        [% IF AutoResumeSuspendedHolds %]
Lines 214-220 Link Here
214
                <br/>
214
                <br/>
215
                <div>
215
                <div>
216
                    <form id="resume_all_holds" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
216
                    <form id="resume_all_holds" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
217
                        <button type="submit" id="resume_all_submit" class="btn"><i class="fa fa-play"></i> Resume all suspended holds</button>
217
                        <button type="submit" id="resume_all_submit" class="btn"><i class="fa fa-play" aria-hidden="true"></i> Resume all suspended holds</button>
218
                        <input type="hidden" name="suspend" value="0" />
218
                        <input type="hidden" name="suspend" value="0" />
219
                    </form>
219
                    </form>
220
                </div>
220
                </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-langmenu.inc (-3 / +3 lines)
Lines 3-9 Link Here
3
    <div id="header_langmenu" class="pull-left">
3
    <div id="header_langmenu" class="pull-left">
4
        <ul class="nav">
4
        <ul class="nav">
5
            <li class="dropdown">
5
            <li class="dropdown">
6
              <a href="#" title="Switch languages" class="dropdown-toggle" id="langmenu" data-toggle="dropdown" role="button"><i class="fa fa-flag fa-icon-white"></i> <span class="langlabel">Languages</span> <b class="caret"></b></a>
6
              <a href="#" title="Switch languages" class="dropdown-toggle" id="langmenu" data-toggle="dropdown" role="button"><i class="fa fa-flag fa-icon-white" aria-hidden="true"></i> <span class="langlabel">Languages</span> <b class="caret"></b></a>
7
                <ul aria-labelledby="langmenu" role="menu" class="dropdown-menu dropdown-menu-right">
7
                <ul aria-labelledby="langmenu" role="menu" class="dropdown-menu dropdown-menu-right">
8
                [% FOREACH languages_loo IN languages_loop %]
8
                [% FOREACH languages_loo IN languages_loop %]
9
                    [% IF ( languages_loo.group_enabled ) %]
9
                    [% IF ( languages_loo.group_enabled ) %]
Lines 11-17 Link Here
11
                            [% FOREACH sublanguages_loo IN languages_loo.sublanguages_loop %]
11
                            [% FOREACH sublanguages_loo IN languages_loo.sublanguages_loop %]
12
                                [% IF ( sublanguages_loo.enabled ) %]
12
                                [% IF ( sublanguages_loo.enabled ) %]
13
                                    [% IF ( sublanguages_loo.sublanguage_current ) %]
13
                                    [% IF ( sublanguages_loo.sublanguage_current ) %]
14
                                     <li role="presentation"> <a href="#" tabindex="-1" role="menuitem">[% sublanguages_loo.native_description | html %] [% sublanguages_loo.script_description | html %] [% sublanguages_loo.region_description | html %] [% sublanguages_loo.variant_description | html %]&nbsp;<i class="fa fa-check"></i></a></li>
14
                                     <li role="presentation"> <a href="#" tabindex="-1" role="menuitem">[% sublanguages_loo.native_description | html %] [% sublanguages_loo.script_description | html %] [% sublanguages_loo.region_description | html %] [% sublanguages_loo.variant_description | html %]&nbsp;<i class="fa fa-check" aria-hidden="true"></i></a></li>
15
                                    [% ELSE %]
15
                                    [% ELSE %]
16
                                    <li role="presentation"><a href="/cgi-bin/koha/opac-changelanguage.pl?language=[% sublanguages_loo.rfc4646_subtag | uri %]"  tabindex="-1" role="menuitem"> [% sublanguages_loo.native_description | html %] [% sublanguages_loo.script_description | html %] [% sublanguages_loo.region_description | html %] [% sublanguages_loo.variant_description | html %]</a></li>
16
                                    <li role="presentation"><a href="/cgi-bin/koha/opac-changelanguage.pl?language=[% sublanguages_loo.rfc4646_subtag | uri %]"  tabindex="-1" role="menuitem"> [% sublanguages_loo.native_description | html %] [% sublanguages_loo.script_description | html %] [% sublanguages_loo.region_description | html %] [% sublanguages_loo.variant_description | html %]</a></li>
17
                                    [% END %]
17
                                    [% END %]
Lines 20-26 Link Here
20
                        [% ELSE %]
20
                        [% ELSE %]
21
                            [% IF ( languages_loo.group_enabled ) %]
21
                            [% IF ( languages_loo.group_enabled ) %]
22
                                [% IF ( languages_loo.current ) %]
22
                                [% IF ( languages_loo.current ) %]
23
                                <li role="presentation"><a href="#" tabindex="-1" class="menu-inactive" role="menuitem">[% IF ( languages_loo.native_description ) %][% languages_loo.native_description | html %][% ELSE %][% languages_loo.rfc4646_subtag | html %][% END %]&nbsp;<i class="fa fa-check"></i></a></li>
23
                                <li role="presentation"><a href="#" tabindex="-1" class="menu-inactive" role="menuitem">[% IF ( languages_loo.native_description ) %][% languages_loo.native_description | html %][% ELSE %][% languages_loo.rfc4646_subtag | html %][% END %]&nbsp;<i class="fa fa-check" aria-hidden="true"></i></a></li>
24
                                [% ELSE %]
24
                                [% ELSE %]
25
                                <li role="presentation"><a href="/cgi-bin/koha/opac-changelanguage.pl?language=[% languages_loo.rfc4646_subtag | uri %]"  tabindex="-1" role="menuitem">[% IF ( languages_loo.native_description ) %][% languages_loo.native_description | html %][% ELSE %][% languages_loo.rfc4646_subtag | html %][% END %]</a></li>
25
                                <li role="presentation"><a href="/cgi-bin/koha/opac-changelanguage.pl?language=[% languages_loo.rfc4646_subtag | uri %]"  tabindex="-1" role="menuitem">[% IF ( languages_loo.native_description ) %][% languages_loo.native_description | html %][% ELSE %][% languages_loo.rfc4646_subtag | html %][% END %]</a></li>
26
                                [% END %]
26
                                [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc (-1 / +1 lines)
Lines 11-17 Link Here
11
                <a class="brand" href="/cgi-bin/koha/sco/sco-main.pl"><img src="[% interface | html %]/[% theme | html %]/images/koha-green-logo.png" alt=""></a>
11
                <a class="brand" href="/cgi-bin/koha/sco/sco-main.pl"><img src="[% interface | html %]/[% theme | html %]/images/koha-green-logo.png" alt=""></a>
12
                <div id="checkouthelp">
12
                <div id="checkouthelp">
13
                    <ul class="nav pull-right">
13
                    <ul class="nav pull-right">
14
                        <li><a href="/cgi-bin/koha/sco/help.pl"><i class="fa fa-info-circle"></i> Help</a></li>
14
                        <li><a href="/cgi-bin/koha/sco/help.pl"><i class="fa fa-info-circle" aria-hidden="true"></i> Help</a></li>
15
                    </ul>
15
                    </ul>
16
                </div>
16
                </div>
17
17
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-8 / +8 lines)
Lines 28-34 Link Here
28
                        [% IF ( Koha.Preference( 'opacbookbag' ) == 1 ) %]
28
                        [% IF ( Koha.Preference( 'opacbookbag' ) == 1 ) %]
29
                            <li>
29
                            <li>
30
                                <a href="#" title="Collect items you are interested in" id="cartmenulink" role="button">
30
                                <a href="#" title="Collect items you are interested in" id="cartmenulink" role="button">
31
                                    <i id="carticon" class="fa fa-shopping-cart fa-icon-white"></i> <span class="cartlabel">Cart</span> <span id="basketcount"></span>
31
                                    <i id="carticon" class="fa fa-shopping-cart fa-icon-white" aria-hidden="true"></i> <span class="cartlabel">Cart</span> <span id="basketcount"></span>
32
                                </a>
32
                                </a>
33
                            </li>
33
                            </li>
34
                        [% END %]
34
                        [% END %]
Lines 37-43 Link Here
37
                        [% END %]
37
                        [% END %]
38
                        [% IF ( Koha.Preference( 'virtualshelves' ) == 1 ) %]
38
                        [% IF ( Koha.Preference( 'virtualshelves' ) == 1 ) %]
39
                            <li class="dropdown">
39
                            <li class="dropdown">
40
                                <a href="#" title="Show lists" class="dropdown-toggle" id="listsmenu" data-toggle="dropdown" role="button"><i class="fa fa-list fa-icon-white"></i> <span class="listslabel">Lists</span> <b class="caret"></b></a>
40
                                <a href="#" title="Show lists" class="dropdown-toggle" id="listsmenu" data-toggle="dropdown" role="button"><i class="fa fa-list fa-icon-white" aria-hidden="true"></i> <span class="listslabel">Lists</span> <b class="caret"></b></a>
41
                                <ul aria-labelledby="listsmenu" role="menu" class="dropdown-menu">
41
                                <ul aria-labelledby="listsmenu" role="menu" class="dropdown-menu">
42
                                [% IF some_public_shelves.count %]
42
                                [% IF some_public_shelves.count %]
43
                                    <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=2" tabindex="-1" role="menuitem"><strong>Public lists</strong></a></li>
43
                                    <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=2" tabindex="-1" role="menuitem"><strong>Public lists</strong></a></li>
Lines 91-108 Link Here
91
                                    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
91
                                    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
92
                                        [% IF ( loggedinusername ) %]
92
                                        [% IF ( loggedinusername ) %]
93
                                            <a href="#" class="dropdown-toggle" id="user-menu" data-toggle="dropdown" role="button">
93
                                            <a href="#" class="dropdown-toggle" id="user-menu" data-toggle="dropdown" role="button">
94
                                                <i class="fa fa-user fa-icon-white fa-fw"></i>
94
                                                <i class="fa fa-user fa-icon-white fa-fw" aria-hidden="true"></i>
95
                                                <span class="userlabel">Welcome, [% INCLUDE 'patron-title.inc' patron = logged_in_user no_html = 1 %]</span>
95
                                                <span class="userlabel">Welcome, [% INCLUDE 'patron-title.inc' patron = logged_in_user no_html = 1 %]</span>
96
                                                <b class="caret"></b>
96
                                                <b class="caret"></b>
97
                                            </a>
97
                                            </a>
98
                                        [% ELSE %]
98
                                        [% ELSE %]
99
                                            [% IF Koha.Preference('casAuthentication') %]
99
                                            [% IF Koha.Preference('casAuthentication') %]
100
                                                [%# CAS authentication is too complicated for modal window %]
100
                                                [%# CAS authentication is too complicated for modal window %]
101
                                                    <a class="login-link" href="/cgi-bin/koha/opac-user.pl"><i class="fa fa-user fa-icon-white fa-fw"></i> <span class="userlabel">Log in to your account</span></a>
101
                                                    <a class="login-link" href="/cgi-bin/koha/opac-user.pl"><i class="fa fa-user fa-icon-white fa-fw" aria-hidden="true"></i> <span class="userlabel">Log in to your account</span></a>
102
                                            [% ELSIF ( Koha.Preference('GoogleOpenIDConnect') == 1 ) %]
102
                                            [% ELSIF ( Koha.Preference('GoogleOpenIDConnect') == 1 ) %]
103
                                                <a class="login-link" href="/cgi-bin/koha/svc/auth/googleopenidconnect" role="button" data-toggle="modal"><i class="fa fa-user fa-icon-white fa-fw"></i> <span class="userlabel">Log in to your account</span></a>
103
                                                <a class="login-link" href="/cgi-bin/koha/svc/auth/googleopenidconnect" role="button" data-toggle="modal"><i class="fa fa-user fa-icon-white fa-fw" aria-hidden="true"></i> <span class="userlabel">Log in to your account</span></a>
104
                                            [% ELSE %]
104
                                            [% ELSE %]
105
                                                <a href="/cgi-bin/koha/opac-user.pl" class="login-link loginModal-trigger"><i class="fa fa-user fa-icon-white fa-fw"></i> <span class="userlabel">Log in to your account</span></a>
105
                                                <a href="/cgi-bin/koha/opac-user.pl" class="login-link loginModal-trigger"><i class="fa fa-user fa-icon-white fa-fw" aria-hidden="true"></i> <span class="userlabel">Log in to your account</span></a>
106
                                            [% END %]
106
                                            [% END %]
107
                                        [% END %]
107
                                        [% END %]
108
                                    [% END %]
108
                                    [% END %]
Lines 118-124 Link Here
118
                                                        <p class="search_history">
118
                                                        <p class="search_history">
119
                                                            <a tabindex="-1" role="menuitem" class="login-link" href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a>
119
                                                            <a tabindex="-1" role="menuitem" class="login-link" href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a>
120
                                                            <span class="divider-vertical"></span>
120
                                                            <span class="divider-vertical"></span>
121
                                                            <a class="logout clearsh" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history"><i class="fa fa-trash"></i> Clear</a>
121
                                                            <a class="logout clearsh" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history"><i class="fa fa-trash" aria-hidden="true"></i> Clear</a>
122
                                                        </p>
122
                                                        </p>
123
                                                    [% END %]
123
                                                    [% END %]
124
                                                    <p>
124
                                                    <p>
Lines 135-141 Link Here
135
                                        <li class="search_history">
135
                                        <li class="search_history">
136
                                            <a href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a>
136
                                            <a href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a>
137
                                            <span class="divider-vertical"></span>
137
                                            <span class="divider-vertical"></span>
138
                                            <a class="logout clearsh" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history"><i class="fa fa-trash"></i> Clear</a>
138
                                            <a class="logout clearsh" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history"><i class="fa fa-trash" aria-hidden="true"></i> Clear</a>
139
                                        </li>
139
                                        </li>
140
                                    [% END %]
140
                                    [% END %]
141
                                [% END %]
141
                                [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc (-12 / +12 lines)
Lines 5-53 Link Here
5
        [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
5
        [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
6
            [% IF Koha.Preference( 'RequestOnOpac' ) == 1 %]
6
            [% IF Koha.Preference( 'RequestOnOpac' ) == 1 %]
7
                [% IF ( ReservableItems ) %]
7
                [% IF ( ReservableItems ) %]
8
                    <li><a class="reserve btn btn-link btn-lg" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-fw fa-bookmark"></i> Place hold</a></li>
8
                    <li><a class="reserve btn btn-link btn-lg" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-fw fa-bookmark" aria-hidden="true"></i> Place hold</a></li>
9
                [% END %]
9
                [% END %]
10
            [% END %]
10
            [% END %]
11
        [% END %]
11
        [% END %]
12
    [% END %]
12
    [% END %]
13
13
14
    <li><a class="print-large btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-print"></i> Print</a></li>
14
    <li><a class="print-large btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-print" aria-hidden="true"></i> Print</a></li>
15
15
16
    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
16
    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
17
        [% IF artreqpossible %]
17
        [% IF artreqpossible %]
18
            <li><a class="article_request btn btn-link btn-lg" href="/cgi-bin/koha/opac-request-article.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-fw fa-file-text"></i> Request article</a></li>
18
            <li><a class="article_request btn btn-link btn-lg" href="/cgi-bin/koha/opac-request-article.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-fw fa-file-text" aria-hidden="true"></i> Request article</a></li>
19
        [% END %]
19
        [% END %]
20
    [% END %]
20
    [% END %]
21
21
22
    [% IF Koha.Preference( 'virtualshelves' ) == 1 %]
22
    [% IF Koha.Preference( 'virtualshelves' ) == 1 %]
23
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && loggedinusername ) %]
23
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && loggedinusername ) %]
24
            <li><a class="addtoshelf btn btn-link btn-lg" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-fw fa-list"></i> Save to your lists</a></li>
24
            <li><a class="addtoshelf btn btn-link btn-lg" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-fw fa-list" aria-hidden="true"></i> Save to your lists</a></li>
25
        [% END %]
25
        [% END %]
26
    [% END %]
26
    [% END %]
27
27
28
    [% IF Koha.Preference( 'opacbookbag' ) == 1 %]
28
    [% IF Koha.Preference( 'opacbookbag' ) == 1 %]
29
        [% IF ( incart ) %]
29
        [% IF ( incart ) %]
30
            <li><a data-biblionumber="[% biblio.biblionumber | html %]" class="addtocart incart cart[% biblio.biblionumber | html %] addrecord btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-shopping-cart"></i> In your cart</a> <a data-biblionumber="[% biblio.biblionumber | html %]" class="cartRemove cartR[% biblio.biblionumber | html %]" href="#">(remove)</a></li>
30
            <li><a data-biblionumber="[% biblio.biblionumber | html %]" class="addtocart incart cart[% biblio.biblionumber | html %] addrecord btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-shopping-cart" aria-hidden="true"></i> In your cart</a> <a data-biblionumber="[% biblio.biblionumber | html %]" class="cartRemove cartR[% biblio.biblionumber | html %]" href="#">(remove)</a></li>
31
        [% ELSE %]
31
        [% ELSE %]
32
            <li><a data-biblionumber="[% biblio.biblionumber | html %]" class="addtocart cart[% biblio.biblionumber | html %] addrecord btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-shopping-cart"></i> Add to your cart</a>  <a style="display:none;" data-biblionumber="[% biblio.biblionumber | html %]" class="cartRemove cartR[% biblio.biblionumber | html %]" href="#">(remove)</a></li>
32
            <li><a data-biblionumber="[% biblio.biblionumber | html %]" class="addtocart cart[% biblio.biblionumber | html %] addrecord btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-shopping-cart" aria-hidden="true"></i> Add to your cart</a>  <a style="display:none;" data-biblionumber="[% biblio.biblionumber | html %]" class="cartRemove cartR[% biblio.biblionumber | html %]" href="#">(remove)</a></li>
33
        [% END %]
33
        [% END %]
34
    [% END %]
34
    [% END %]
35
35
36
    [% IF Koha.Preference('suggestion') %]
36
    [% IF Koha.Preference('suggestion') %]
37
        <li><a class="btn btn-link btn-lg" href="/cgi-bin/koha/opac-suggestions.pl?op=add&biblionumber=[% biblio.biblionumber | url %]"><i class="fa fa-fw fa-gift"></i> Suggest for purchase</a></li>
37
        <li><a class="btn btn-link btn-lg" href="/cgi-bin/koha/opac-suggestions.pl?op=add&biblionumber=[% biblio.biblionumber | url %]"><i class="fa fa-fw fa-gift" aria-hidden="true"></i> Suggest for purchase</a></li>
38
    [% END %]
38
    [% END %]
39
39
40
    [% IF ( OpacHighlightedWords && query_desc ) %]
40
    [% IF ( OpacHighlightedWords && query_desc ) %]
41
    <li>
41
    <li>
42
        <a href="#" class="highlight_toggle btn btn-link btn-lg" id="highlight_toggle_off"><i class="fa fa-fw fa-pencil"></i> Unhighlight</a>
42
        <a href="#" class="highlight_toggle btn btn-link btn-lg" id="highlight_toggle_off"><i class="fa fa-fw fa-pencil" aria-hidden="true"></i> Unhighlight</a>
43
        <a href="#" class="highlight_toggle btn btn-link btn-lg" id="highlight_toggle_on"><i class="fa fa-fw fa-pencil"></i> Highlight</a>
43
        <a href="#" class="highlight_toggle btn btn-link btn-lg" id="highlight_toggle_on"><i class="fa fa-fw fa-pencil" aria-hidden="true"></i> Highlight</a>
44
    </li>
44
    </li>
45
    [% END %]
45
    [% END %]
46
46
47
47
48
    [% IF ( Koha.Preference('OPACDetailQRCode' ) ) %]
48
    [% IF ( Koha.Preference('OPACDetailQRCode' ) ) %]
49
        <li>
49
        <li>
50
            <a class="show_qrcode btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-qrcode"></i> Send to device</a>
50
            <a class="show_qrcode btn btn-link btn-lg" href="#"><i class="fa fa-fw fa-qrcode" aria-hidden="true"></i> Send to device</a>
51
            <div id="qrcode" class="hidden"></div>
51
            <div id="qrcode" class="hidden"></div>
52
        </li>
52
        </li>
53
    [% END %]
53
    [% END %]
Lines 57-63 Link Here
57
        <li>
57
        <li>
58
            <div id="export">
58
            <div id="export">
59
                <div class="dropdown">
59
                <div class="dropdown">
60
                    <a id="format" class="btn btn-link btn-lg dropdown-toggle" data-toggle="dropdown" href="#"><i class="fa fa-fw fa-download"></i> Save record <b class="caret"></b></a>
60
                    <a id="format" class="btn btn-link btn-lg dropdown-toggle" data-toggle="dropdown" href="#"><i class="fa fa-fw fa-download" aria-hidden="true"></i> Save record <b class="caret"></b></a>
61
                        <ul class="dropdown-menu pull-left" role="menu" aria-labelledby="format">
61
                        <ul class="dropdown-menu pull-left" role="menu" aria-labelledby="format">
62
                            [% FOREACH option IN export_options %]
62
                            [% FOREACH option IN export_options %]
63
                                [% IF option == 'dc' %]
63
                                [% IF option == 'dc' %]
Lines 90-96 Link Here
90
        <li>
90
        <li>
91
            <div id="moresearches_menu">
91
            <div id="moresearches_menu">
92
                <div class="dropdown">
92
                <div class="dropdown">
93
                    <a id="furthersearches" class="btn btn-link btn-lg dropdown-toggle" data-toggle="dropdown" href="#"><i class="fa fa-fw fa-search"></i> More searches <b class="caret"></b></a>
93
                    <a id="furthersearches" class="btn btn-link btn-lg dropdown-toggle" data-toggle="dropdown" href="#"><i class="fa fa-fw fa-search" aria-hidden="true"></i> More searches <b class="caret"></b></a>
94
                        <ul class="dropdown-menu pull-left" role="menu" aria-labelledby="furthersearches">
94
                        <ul class="dropdown-menu pull-left" role="menu" aria-labelledby="furthersearches">
95
                            <li><a href="#" class="menu-inactive">Search for this title in:</a></li>
95
                            <li><a href="#" class="menu-inactive">Search for this title in:</a></li>
96
                            [% OPACSearchForTitleIn | $raw %]
96
                            [% OPACSearchForTitleIn | $raw %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/page-numbers.inc (-4 / +4 lines)
Lines 4-11 Link Here
4
     [% IF hits_to_paginate < total %]<h6>[% hits_to_paginate | html %] of [% total | html %] results loaded, refine your search to view other records</h6>[% END %]
4
     [% IF hits_to_paginate < total %]<h6>[% hits_to_paginate | html %] of [% total | html %] results loaded, refine your search to view other records</h6>[% END %]
5
        <ul>
5
        <ul>
6
            [% IF ( previous_page_offset.defined ) %]
6
            [% IF ( previous_page_offset.defined ) %]
7
                <li class="page-first"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]"><i class="fa fa-fw fa-angle-double-left"></i>  First</a></li>
7
                <li class="page-first"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]"><i class="fa fa-fw fa-angle-double-left" aria-hidden="true"></i>  First</a></li>
8
                <li class="page-prev"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;offset=[% previous_page_offset | uri %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]"> <i class="fa fa-fw fa-angle-left"></i>  Previous</a></li>
8
                <li class="page-prev"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;offset=[% previous_page_offset | uri %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]"> <i class="fa fa-fw fa-angle-left" aria-hidden="true"></i>  Previous</a></li>
9
            [% END %]
9
            [% END %]
10
            [% FOREACH PAGE_NUMBER IN PAGE_NUMBERS %]
10
            [% FOREACH PAGE_NUMBER IN PAGE_NUMBERS %]
11
                [% IF ( PAGE_NUMBER.highlight ) %]
11
                [% IF ( PAGE_NUMBER.highlight ) %]
Lines 15-22 Link Here
15
                [% END %]
15
                [% END %]
16
            [% END %]
16
            [% END %]
17
            [% IF ( next_page_offset ) %]
17
            [% IF ( next_page_offset ) %]
18
                <li class="page-next"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;offset=[% next_page_offset | uri %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]">Next <i class="fa fa-fw fa-angle-double-right"></i></a></li>
18
                <li class="page-next"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;offset=[% next_page_offset | uri %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]">Next <i class="fa fa-fw fa-angle-double-right" aria-hidden="true"></i></a></li>
19
                <li class="page-last"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;offset=[% last_page_offset | uri %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]">Last <i class="fa fa-fw fa-angle-double-right"></i></a></li>
19
                <li class="page-last"><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;offset=[% last_page_offset | uri %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by | uri %][% END %][% IF results_per_page %]&amp;count=[% results_per_page | uri %][% END %]">Last <i class="fa fa-fw fa-angle-double-right" aria-hidden="true"></i></a></li>
20
            [% END %]
20
            [% END %]
21
        </ul>
21
        </ul>
22
    </div>
22
    </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc (-2 / +2 lines)
Lines 15-21 Link Here
15
                    <td class="nav-cell" rowspan="2">
15
                    <td class="nav-cell" rowspan="2">
16
                      [% IF shelfbrowser_prev_item %]
16
                      [% IF shelfbrowser_prev_item %]
17
                        <div id="browser_previous">
17
                        <div id="browser_previous">
18
                            <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% shelfbrowser_prev_item.biblionumber | uri %]&amp;shelfbrowse_itemnumber=[% shelfbrowser_prev_item.itemnumber | uri %]#shelfbrowser" data-prev-itemnumber="[% shelfbrowser_prev_item.itemnumber | html %]"><i class="fa fa-caret-up"></i> Previous</a>
18
                            <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% shelfbrowser_prev_item.biblionumber | uri %]&amp;shelfbrowse_itemnumber=[% shelfbrowser_prev_item.itemnumber | uri %]#shelfbrowser" data-prev-itemnumber="[% shelfbrowser_prev_item.itemnumber | html %]"><i class="fa fa-caret-up" aria-hidden="true"></i> Previous</a>
19
                        </div>
19
                        </div>
20
                      [% END %]
20
                      [% END %]
21
                    </td>
21
                    </td>
Lines 75-81 Link Here
75
                    <td class="nav-cell" rowspan="2">
75
                    <td class="nav-cell" rowspan="2">
76
                        [% IF shelfbrowser_next_item %]
76
                        [% IF shelfbrowser_next_item %]
77
                            <div id="browser_next">
77
                            <div id="browser_next">
78
                                <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% shelfbrowser_next_item.biblionumber | uri %]&amp;shelfbrowse_itemnumber=[% shelfbrowser_next_item.itemnumber | uri %]#shelfbrowser" data-next-itemnumber="[% shelfbrowser_next_item.itemnumber | html %]">Next <i class="fa fa-caret-up"></i></a>
78
                                <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% shelfbrowser_next_item.biblionumber | uri %]&amp;shelfbrowse_itemnumber=[% shelfbrowser_next_item.itemnumber | uri %]#shelfbrowser" data-next-itemnumber="[% shelfbrowser_next_item.itemnumber | html %]">Next <i class="fa fa-caret-up" aria-hidden="true"></i></a>
79
                            </div>
79
                            </div>
80
                        [% END %]
80
                        [% END %]
81
                    </td>
81
                    </td>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/title-actions-menu.inc (-12 / +12 lines)
Lines 4-17 Link Here
4
            [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
4
            [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
5
                [% IF ( shelf AND op == 'view' ) # Lists view has more granular checking of hold availability %]
5
                [% IF ( shelf AND op == 'view' ) # Lists view has more granular checking of hold availability %]
6
                    [% IF ( items.allow_onshelf_holds ) %]
6
                    [% IF ( items.allow_onshelf_holds ) %]
7
                        <span class="actions"><a class="btn btn-link hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% items.biblionumber | html %]"><i class="fa fa-fw fa-bookmark"></i> Place hold</a></span>
7
                        <span class="actions"><a class="btn btn-link hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% items.biblionumber | html %]"><i class="fa fa-fw fa-bookmark" aria-hidden="true"></i> Place hold</a></span>
8
                    [% ELSE %]
8
                    [% ELSE %]
9
                        [% IF ( items.itemsissued ) %]
9
                        [% IF ( items.itemsissued ) %]
10
                            <span class="actions"><a class="btn btn-link hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% items.biblionumber | html %]"><i class="fa fa-fw fa-bookmark"></i> Place hold</a></span>
10
                            <span class="actions"><a class="btn btn-link hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% items.biblionumber | html %]"><i class="fa fa-fw fa-bookmark" aria-hidden="true"></i> Place hold</a></span>
11
                        [% END %]
11
                        [% END %]
12
                    [% END %]
12
                    [% END %]
13
                [% ELSE %]
13
                [% ELSE %]
14
                    <span class="actions"><a class="btn btn-link hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% items.biblionumber | html %]"><i class="fa fa-fw fa-bookmark"></i> Place hold</a></span>
14
                    <span class="actions"><a class="btn btn-link hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% items.biblionumber | html %]"><i class="fa fa-fw fa-bookmark" aria-hidden="true"></i> Place hold</a></span>
15
                [% END %]
15
                [% END %]
16
            [% END # / IF opacuserlogin %]
16
            [% END # / IF opacuserlogin %]
17
        [% END # / UNLESS items.norequests %]
17
        [% END # / UNLESS items.norequests %]
Lines 19-31 Link Here
19
19
20
    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
20
    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
21
        [% IF items.artreqpossible %]
21
        [% IF items.artreqpossible %]
22
            <span class="actions"><a href="/cgi-bin/koha/opac-request-article.pl?biblionumber=[% items.biblionumber | uri %]" class="btn btn-link"><i class="fa fa-file-text"></i> Request article</a></span>
22
            <span class="actions"><a href="/cgi-bin/koha/opac-request-article.pl?biblionumber=[% items.biblionumber | uri %]" class="btn btn-link"><i class="fa fa-file-text" aria-hidden="true"></i> Request article</a></span>
23
        [% END %]
23
        [% END %]
24
    [% END %]
24
    [% END %]
25
25
26
    [% IF ( TagsInputEnabled ) %]
26
    [% IF ( TagsInputEnabled ) %]
27
        [% IF ( loggedinusername ) %]
27
        [% IF ( loggedinusername ) %]
28
            <span class="actions"><a id="tag_add[% items.biblionumber | html %]" href="#" class="tag_add btn btn-link"><i class="fa fa-tag"></i> Add tag</a></span>
28
            <span class="actions"><a id="tag_add[% items.biblionumber | html %]" href="#" class="tag_add btn btn-link"><i class="fa fa-tag" aria-hidden="true"></i> Add tag</a></span>
29
            <div id="tagform[% items.biblionumber | html %]" class="tag_results_input" style="display:none;">
29
            <div id="tagform[% items.biblionumber | html %]" class="tag_results_input" style="display:none;">
30
                <label for="newtag[% items.biblionumber | html %]">New tag(s), separated by a comma:</label>
30
                <label for="newtag[% items.biblionumber | html %]">New tag(s), separated by a comma:</label>
31
                <input type="text" name="newtag[% items.biblionumber | html %]" id="newtag[% items.biblionumber | html %]" class="newtag" maxlength="100" />
31
                <input type="text" name="newtag[% items.biblionumber | html %]" id="newtag[% items.biblionumber | html %]" class="newtag" maxlength="100" />
Lines 36-61 Link Here
36
                Tag status here.
36
                Tag status here.
37
            </span>
37
            </span>
38
        [% ELSE %]
38
        [% ELSE %]
39
            <span class="actions"><span id="login4tags"><a class="btn btn-link loginModal-trigger" href="/cgi-bin/koha/opac-user.pl"><i class="fa fa-tag"></i> Log in to add tags</a></span></span>
39
            <span class="actions"><span id="login4tags"><a class="btn btn-link loginModal-trigger" href="/cgi-bin/koha/opac-user.pl"><i class="fa fa-tag" aria-hidden="true"></i> Log in to add tags</a></span></span>
40
        [% END # IF loggedinusername %]
40
        [% END # IF loggedinusername %]
41
    [% END # if TagsInputEnabled %]
41
    [% END # if TagsInputEnabled %]
42
42
43
    [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && loggedinusername && ( Koha.Preference( 'virtualshelves' ) == 1 ) ) %]
43
    [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && loggedinusername && ( Koha.Preference( 'virtualshelves' ) == 1 ) ) %]
44
        [% IF ( shelf AND op == 'view' ) %]
44
        [% IF ( shelf AND op == 'view' ) %]
45
            <span class="actions"><a href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | uri %]" onclick="Dopop('opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | uri %]'); return false;" class="btn btn-link"><i class="fa fa-list"></i> Save to another list</a></span>
45
            <span class="actions"><a href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | uri %]" onclick="Dopop('opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | uri %]'); return false;" class="btn btn-link"><i class="fa fa-list" aria-hidden="true"></i> Save to another list</a></span>
46
            [% IF can_remove_biblios %]
46
            [% IF can_remove_biblios %]
47
                <span class="actions"><a class="btn btn-link removefromlist" href="/cgi-bin/koha/opac-shelves.pl?op=remove_biblios&amp;shelfnumber=[% shelf.shelfnumber | html %]&amp;biblionumber=[% items.biblionumber | html %]"><i class="fa fa-remove"></i> Remove from this list</a></span>
47
                <span class="actions"><a class="btn btn-link removefromlist" href="/cgi-bin/koha/opac-shelves.pl?op=remove_biblios&amp;shelfnumber=[% shelf.shelfnumber | html %]&amp;biblionumber=[% items.biblionumber | html %]"><i class="fa fa-remove" aria-hidden="true"></i> Remove from this list</a></span>
48
            [% END %]
48
            [% END %]
49
        [% ELSE %]
49
        [% ELSE %]
50
            <span class="actions"><a class="addtoshelf btn btn-link" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | html %]" onclick="Dopop('opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | html %]'); return false;"><i class="fa fa-list"></i> Save to lists</a></span>
50
            <span class="actions"><a class="addtoshelf btn btn-link" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | html %]" onclick="Dopop('opac-addbybiblionumber.pl?biblionumber=[% items.biblionumber | html %]'); return false;"><i class="fa fa-list" aria-hidden="true"></i> Save to lists</a></span>
51
        [% END # /IF ( shelf AND op == 'view' ) %]
51
        [% END # /IF ( shelf AND op == 'view' ) %]
52
    [% END # /IF Koha.Preference( 'opacuserlogin' ) %]
52
    [% END # /IF Koha.Preference( 'opacuserlogin' ) %]
53
53
54
    [% IF Koha.Preference( 'opacbookbag' ) == 1 %]
54
    [% IF Koha.Preference( 'opacbookbag' ) == 1 %]
55
        [% IF ( items.incart ) %]
55
        [% IF ( items.incart ) %]
56
            <span class="actions"><a data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link cart cart[% items.biblionumber | html %]" href="#"><i class="fa fa-shopping-cart"></i> In your cart</a> <a data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link remove cartRemove cartR[% items.biblionumber | html %]" href="#">(remove)</a></span>
56
            <span class="actions"><a data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link cart cart[% items.biblionumber | html %]" href="#"><i class="fa fa-shopping-cart" aria-hidden="true"></i> In your cart</a> <a data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link remove cartRemove cartR[% items.biblionumber | html %]" href="#">(remove)</a></span>
57
        [% ELSE %]
57
        [% ELSE %]
58
            <span class="actions"><a data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link addtocart cart cart[% items.biblionumber | html %]" href="#"><i class="fa fa-shopping-cart"></i> Add to cart</a> <a style="display:none;" data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link remove cartRemove cartR[% items.biblionumber | html %]" href="#">(remove)</a></span>
58
            <span class="actions"><a data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link addtocart cart cart[% items.biblionumber | html %]" href="#"><i class="fa fa-shopping-cart" aria-hidden="true"></i> Add to cart</a> <a style="display:none;" data-biblionumber="[% items.biblionumber | html %]" class="btn btn-link remove cartRemove cartR[% items.biblionumber | html %]" href="#">(remove)</a></span>
59
        [% END %]
59
        [% END %]
60
    [% END # / IF opacbookbag %]
60
    [% END # / IF opacbookbag %]
61
</div>
61
</div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt (-2 / +2 lines)
Lines 23-29 Link Here
23
                    <td>
23
                    <td>
24
                        [% IF e.club.club_template.is_enrollable_from_opac %]
24
                        [% IF e.club.club_template.is_enrollable_from_opac %]
25
                            <button class="btn btn-xs btn-default" onclick="cancelEnrollment( [% e.id | html %] )">
25
                            <button class="btn btn-xs btn-default" onclick="cancelEnrollment( [% e.id | html %] )">
26
                                <i class="fa fa-remove"></i> Cancel enrollment
26
                                <i class="fa fa-remove" aria-hidden="true"></i> Cancel enrollment
27
                            </button>
27
                            </button>
28
                        [% ELSE %]
28
                        [% ELSE %]
29
                            Contact your library to be disenrolled from this club.
29
                            Contact your library to be disenrolled from this club.
Lines 56-62 Link Here
56
                    <td>
56
                    <td>
57
                        [% IF !c.club_template.is_email_required || ( c.club_template.is_email_required && borrower.first_valid_email_address ) %]
57
                        [% IF !c.club_template.is_email_required || ( c.club_template.is_email_required && borrower.first_valid_email_address ) %]
58
                            <button class="btn btn-xs btn-default" onclick="loadEnrollmentForm([% c.id | html%])">
58
                            <button class="btn btn-xs btn-default" onclick="loadEnrollmentForm([% c.id | html%])">
59
                                <i class="fa fa-plus"></i> Enroll
59
                                <i class="fa fa-plus" aria-hidden="true"></i> Enroll
60
                            </button>
60
                            </button>
61
                        [% ELSE %]
61
                        [% ELSE %]
62
                            <span class="hint">You must have an email address to enroll</span>
62
                            <span class="hint">You must have an email address to enroll</span>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-ISBDdetail.tt (-3 / +3 lines)
Lines 20-28 Link Here
20
                    <div id="usermarcdetail">
20
                    <div id="usermarcdetail">
21
                        <div id="catalogue_detail_biblio">
21
                        <div id="catalogue_detail_biblio">
22
                            <div id="views">
22
                            <div id="views">
23
                                <span class="view"><a id="Normalview" class="btn btn-link" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-file-text-o"></i> Normal view</a></span>
23
                                <span class="view"><a id="Normalview" class="btn btn-link" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-file-text-o" aria-hidden="true"></i> Normal view</a></span>
24
                                <span class="view"><a id="MARCview" class="btn btn-link" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-alt"></i> MARC view</a></span>
24
                                <span class="view"><a id="MARCview" class="btn btn-link" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-alt" aria-hidden="true"></i> MARC view</a></span>
25
                                <span class="view current-view"><span id="ISBDview"><i class="fa fa-list-ul"></i> ISBD view</span></span></div>
25
                                <span class="view current-view"><span id="ISBDview"><i class="fa fa-list-ul" aria-hidden="true"></i> ISBD view</span></span></div>
26
26
27
                                <div id="isbdcontents">[% ISBD | $raw %]</div>
27
                                <div id="isbdcontents">[% ISBD | $raw %]</div>
28
28
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt (-3 / +3 lines)
Lines 21-29 Link Here
21
                        <div id="catalogue_detail_biblio">
21
                        <div id="catalogue_detail_biblio">
22
22
23
                            <div id="views">
23
                            <div id="views">
24
                                <span class="view"><a id="Normalview" class="btn btn-link" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-file-text-o"></i> Normal view</a></span>
24
                                <span class="view"><a id="Normalview" class="btn btn-link" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-file-text-o" aria-hidden="true"></i> Normal view</a></span>
25
                                <span class="view current-view"><span id="MARCview"><i class="fa fa-list-alt"></i> MARC view</span></span>
25
                                <span class="view current-view"><span id="MARCview"><i class="fa fa-list-alt" aria-hidden="true"></i> MARC view</span></span>
26
                                [% IF ( ISBD ) %]<span class="view"><a id="ISBDview" class="btn btn-link" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-ul"></i> ISBD view</a></span>[% END %]
26
                                [% IF ( ISBD ) %]<span class="view"><a id="ISBDview" class="btn btn-link" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-ul" aria-hidden="true"></i> ISBD view</a></span>[% END %]
27
                            </div>
27
                            </div>
28
                            <h1 class="title">[% bibliotitle | html %] (Record no. [% biblio.biblionumber | html %])</h1>
28
                            <h1 class="title">[% bibliotitle | html %] (Record no. [% biblio.biblionumber | html %])</h1>
29
29
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt (-3 / +3 lines)
Lines 96-110 $( document ).ready(function() { Link Here
96
         "dom": '<"#filter_p">',
96
         "dom": '<"#filter_p">',
97
    } ));
97
    } ));
98
98
99
    $("#filter_p").html('<p><a href="#" id="filter_paid"><i class="fa fa-filter"></i> '+txtActivefilter+'</a>');
99
    $("#filter_p").html('<p><a href="#" id="filter_paid"><i class="fa fa-filter" aria-hidden="true"></i> '+txtActivefilter+'</a>');
100
    $('#filter_paid').click(function(e) {
100
    $('#filter_paid').click(function(e) {
101
        e.preventDefault();
101
        e.preventDefault();
102
        if ($(this).hasClass('filtered')) {
102
        if ($(this).hasClass('filtered')) {
103
            var filteredValue = '';
103
            var filteredValue = '';
104
            $(this).html('<i class="fa fa-filter"></i> '+txtActivefilter);
104
            $(this).html('<i class="fa fa-filter" aria-hidden="true"></i> '+txtActivefilter);
105
        } else { //Not filtered. Let's do it!
105
        } else { //Not filtered. Let's do it!
106
            var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408
106
            var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408
107
            $(this).html('<i class="fa fa-filter"></i> '+txtInactivefilter);
107
            $(this).html('<i class="fa fa-filter" aria-hidden="true"></i> '+txtInactivefilter);
108
        }
108
        }
109
        fines_table.fnFilter(filteredValue, -1, true, false);
109
        fines_table.fnFilter(filteredValue, -1, true, false);
110
        $(this).toggleClass('filtered');
110
        $(this).toggleClass('filtered');
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt (-11 / +11 lines)
Lines 19-36 Link Here
19
                        <h2>Your cart</h2>
19
                        <h2>Your cart</h2>
20
                            <div id="toolbar" class="toolbar noprint">
20
                            <div id="toolbar" class="toolbar noprint">
21
                                [% IF ( verbose ) %]
21
                                [% IF ( verbose ) %]
22
                                    <a href="opac-basket.pl" class="btn btn-link brief"><i class="fa fa-fw fa-search-minus"></i> Brief display</a>
22
                                    <a href="opac-basket.pl" class="btn btn-link brief"><i class="fa fa-fw fa-search-minus" aria-hidden="true"></i> Brief display</a>
23
                                [% ELSE %]
23
                                [% ELSE %]
24
                                    <a href="opac-basket.pl" class="btn btn-link detail"><i class="fa fa-fw fa-search-plus"></i> More details</a>
24
                                    <a href="opac-basket.pl" class="btn btn-link detail"><i class="fa fa-fw fa-search-plus" aria-hidden="true"></i> More details</a>
25
                                [% END %]
25
                                [% END %]
26
                                [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
26
                                [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
27
                                    <a class="btn btn-link send" href="opac-basket.pl"><i class="fa fa-fw fa-envelope"></i> Send</a>
27
                                    <a class="btn btn-link send" href="opac-basket.pl"><i class="fa fa-fw fa-envelope" aria-hidden="true"></i> Send</a>
28
                                [% END %]
28
                                [% END %]
29
                                <a class="btn btn-link download" href="opac-basket.pl"><i class="fa fa-fw fa-download"></i> Download</a>
29
                                <a class="btn btn-link download" href="opac-basket.pl"><i class="fa fa-fw fa-download" aria-hidden="true"></i> Download</a>
30
                                <a class="btn btn-link remove empty" href="opac-basket.pl"><i class="fa fa-fw fa-trash"></i> Empty and close</a>
30
                                <a class="btn btn-link remove empty" href="opac-basket.pl"><i class="fa fa-fw fa-trash" aria-hidden="true"></i> Empty and close</a>
31
                                <a class="btn btn-link close" href="opac-basket.pl"><i class="fa fa-fw fa-times-circle"></i> Hide window</a>
31
                                <a class="btn btn-link close" href="opac-basket.pl"><i class="fa fa-fw fa-times-circle" aria-hidden="true"></i> Hide window</a>
32
                                [% IF ( verbose ) %]
32
                                [% IF ( verbose ) %]
33
                                    <a class="btn btn-link print-large" href="#"><i class="fa fa-fw fa-print"></i> Print</a>
33
                                    <a class="btn btn-link print-large" href="#"><i class="fa fa-fw fa-print" aria-hidden="true"></i> Print</a>
34
                                [% END %]
34
                                [% END %]
35
                            </div>
35
                            </div>
36
36
Lines 40-55 Link Here
40
                                <span class="sep">|</span>
40
                                <span class="sep">|</span>
41
                                <span class="links" id="tag_hides">
41
                                <span class="links" id="tag_hides">
42
                                    <span id="selections">Select titles to: </span>
42
                                    <span id="selections">Select titles to: </span>
43
                                    <a href="#" class="btn btn-link remove deleteshelf disabled"><i class="fa fa-remove"></i> Remove</a>
43
                                    <a href="#" class="btn btn-link remove deleteshelf disabled"><i class="fa fa-remove" aria-hidden="true"></i> Remove</a>
44
                                    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
44
                                    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
45
                                        [% IF ( ( Koha.Preference( 'virtualshelves' ) == 1 ) && loggedinusername ) %]
45
                                        [% IF ( ( Koha.Preference( 'virtualshelves' ) == 1 ) && loggedinusername ) %]
46
                                            <a href="#" class="btn btn-link newshelf disabled"><i class="fa fa-fw fa-list"></i> Add to a list</a>
46
                                            <a href="#" class="btn btn-link newshelf disabled"><i class="fa fa-fw fa-list" aria-hidden="true"></i> Add to a list</a>
47
                                        [% END %]
47
                                        [% END %]
48
                                        [% IF ( Koha.Preference( 'RequestOnOpac' ) == 1 ) %]
48
                                        [% IF ( Koha.Preference( 'RequestOnOpac' ) == 1 ) %]
49
                                            <a href="#" class="btn btn-link hold disabled"><i class="fa fa-fw fa-bookmark"></i> Place hold</a>
49
                                            <a href="#" class="btn btn-link hold disabled"><i class="fa fa-fw fa-bookmark" aria-hidden="true"></i> Place hold</a>
50
                                        [% END %]
50
                                        [% END %]
51
                                        [% IF ( TagsInputEnabled && loggedinusername ) %]
51
                                        [% IF ( TagsInputEnabled && loggedinusername ) %]
52
                                            <a href="#" id="tagsel_tag" class="btn btn-link disabled"><i class="fa fa-fw fa-tag"></i> Tag</a>
52
                                            <a href="#" id="tagsel_tag" class="btn btn-link disabled"><i class="fa fa-fw fa-tag" aria-hidden="true"></i> Tag</a>
53
                                        [% END %]
53
                                        [% END %]
54
                                    [% END # / IF opacuserlogin %]
54
                                    [% END # / IF opacuserlogin %]
55
                                </span>
55
                                </span>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-20 / +20 lines)
Lines 115-125 Link Here
115
                    [% END %]
115
                    [% END %]
116
116
117
                    <div id="views">
117
                    <div id="views">
118
                        <span class="view current-view"><span id="Normalview"><i class="fa fa-file-text-o"></i> Normal view</span></span>
118
                        <span class="view current-view"><span id="Normalview"><i class="fa fa-file-text-o" aria-hidden="true"></i> Normal view</span></span>
119
                        <span class="view">
119
                        <span class="view">
120
                            <a id="MARCview" class="btn btn-link" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-alt"></i> MARC view</a>
120
                            <a id="MARCview" class="btn btn-link" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-alt" aria-hidden="true"></i> MARC view</a>
121
                        </span>
121
                        </span>
122
                        [% IF ( ISBD ) %]<span class="view"><a id="ISBDview" class="btn btn-link" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-ul"></i> ISBD view</a></span>[% END %]
122
                        [% IF ( ISBD ) %]<span class="view"><a id="ISBDview" class="btn btn-link" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblio.biblionumber | html %]"><i class="fa fa-list-ul" aria-hidden="true"></i> ISBD view</a></span>[% END %]
123
                    </div>
123
                    </div>
124
                    [% IF ( OPACXSLTDetailsDisplay ) %]
124
                    [% IF ( OPACXSLTDetailsDisplay ) %]
125
                        [% XSLTBloc | $raw %]
125
                        [% XSLTBloc | $raw %]
Lines 152-158 Link Here
152
                                        [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]</a>
152
                                        [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]</a>
153
                                    [% END %]
153
                                    [% END %]
154
                                    [% IF (MARCAUTHOR.authoritylink) %]
154
                                    [% IF (MARCAUTHOR.authoritylink) %]
155
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCAUTHOR.authoritylink | html %]"><i class="fa fa-search"></i></a>
155
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCAUTHOR.authoritylink | html %]"><i class="fa fa-search" aria-hidden="true"></i></a>
156
                                    [% END %]
156
                                    [% END %]
157
                                    [% IF IDREF and MARCAUTHOR.unimarc3 %]
157
                                    [% IF IDREF and MARCAUTHOR.unimarc3 %]
158
                                        <a href="/cgi-bin/koha/opac-idref.pl?unimarc3=[% MARCAUTHOR.unimarc3 | uri %]" title="IdRef" rel="gb_page_center[600,500]">IdRef</a>
158
                                        <a href="/cgi-bin/koha/opac-idref.pl?unimarc3=[% MARCAUTHOR.unimarc3 | uri %]" title="IdRef" rel="gb_page_center[600,500]">IdRef</a>
Lines 233-239 Link Here
233
                                        <a title="[% '$' _ SUBFIELD.code _ ' ' _ SUBFIELD.value | html %]" class="subject" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN SUBFIELD.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">[% SUBFIELD.value | html %]</a>
233
                                        <a title="[% '$' _ SUBFIELD.code _ ' ' _ SUBFIELD.value | html %]" class="subject" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN SUBFIELD.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">[% SUBFIELD.value | html %]</a>
234
                                    [% END %]
234
                                    [% END %]
235
                                    [% IF (MARCSUBJCT.authoritylink) %]
235
                                    [% IF (MARCSUBJCT.authoritylink) %]
236
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCSUBJCT.authoritylink | html %]"><i class="fa fa-search"></i></a>
236
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCSUBJCT.authoritylink | html %]"><i class="fa fa-search" aria-hidden="true"></i></a>
237
                                    [% END %]
237
                                    [% END %]
238
                                    [% UNLESS ( loop.last ) %] | [% END %]
238
                                    [% UNLESS ( loop.last ) %] | [% END %]
239
                                [% END # / FOREACH MARCSUBJCTS %]
239
                                [% END # / FOREACH MARCSUBJCTS %]
Lines 428-437 Link Here
428
428
429
                                [% IF my_rating %]
429
                                [% IF my_rating %]
430
                                    <span id="rating_value_text">Your rating: [% my_rating.rating_value | html %].</span>
430
                                    <span id="rating_value_text">Your rating: [% my_rating.rating_value | html %].</span>
431
                                    <span id="cancel_rating_text"><a href="#"><i class="fa fa-remove"></i> Cancel rating</a>.</span>
431
                                    <span id="cancel_rating_text"><a href="#"><i class="fa fa-remove" aria-hidden="true"></i> Cancel rating</a>.</span>
432
                                [% ELSE %]
432
                                [% ELSE %]
433
                                    <span id="rating_value_text"></span>
433
                                    <span id="rating_value_text"></span>
434
                                    <span id="cancel_rating_text" style="display:none;"><a href="#"><i class="fa fa-remove"></i> Cancel rating</a>.</span>
434
                                    <span id="cancel_rating_text" style="display:none;"><a href="#"><i class="fa fa-remove" aria-hidden="true"></i> Cancel rating</a>.</span>
435
                                [% END %]
435
                                [% END %]
436
436
437
                                <span id="rating_text">Average rating: [% rating_avg | html %] ([% ratings.count | html %] votes)</span>
437
                                <span id="rating_text">Average rating: [% rating_avg | html %] ([% ratings.count | html %] votes)</span>
Lines 1006-1021 Link Here
1006
                    <div class="nav_results">
1006
                    <div class="nav_results">
1007
                        <div class="l_Results" style="display:none;">
1007
                        <div class="l_Results" style="display:none;">
1008
                            [% IF ( listResults ) %]
1008
                            [% IF ( listResults ) %]
1009
                                <a href="#" id="a_listResults"><i class="fa fa-bars"></i> Browse results</a>
1009
                                <a href="#" id="a_listResults"><i class="fa fa-bars" aria-hidden="true"></i> Browse results</a>
1010
                            [% ELSE %]
1010
                            [% ELSE %]
1011
                                <span><i class="fa fa-bars"></i> Browse results</span>
1011
                                <span><i class="fa fa-bars" aria-hidden="true"></i> Browse results</span>
1012
                            [% END %]
1012
                            [% END %]
1013
                            <a href="#" class="close_pagination"><i class="fa fa-remove"></i> Close</a>
1013
                            <a href="#" class="close_pagination"><i class="fa fa-remove" aria-hidden="true"></i> Close</a>
1014
                        </div>
1014
                        </div>
1015
                        <ul class="pg_menu clearfix">
1015
                        <ul class="pg_menu clearfix">
1016
                            <li class="left_results">
1016
                            <li class="left_results">
1017
                                [% IF ( previousBiblionumber ) %]
1017
                                [% IF ( previousBiblionumber ) %]
1018
                                    <a href="opac-detail.pl?biblionumber=[% previousBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( previousTitle ) %][% previousTitle | html %][% ELSE %]previous biblio[% END %]"><i class="fa fa-angle-double-left"></i> Previous</a>
1018
                                    <a href="opac-detail.pl?biblionumber=[% previousBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( previousTitle ) %][% previousTitle | html %][% ELSE %]previous biblio[% END %]"><i class="fa fa-angle-double-left" aria-hidden="true"></i> Previous</a>
1019
                                [% ELSE %]
1019
                                [% ELSE %]
1020
                                    <span>Previous</span>
1020
                                    <span>Previous</span>
1021
                                [% END %]
1021
                                [% END %]
Lines 1024-1030 Link Here
1024
                            <li class="back_results"><a href="opac-search.pl?[% busc | $raw %]" title="Back to the results search list">Back to results</a></li>
1024
                            <li class="back_results"><a href="opac-search.pl?[% busc | $raw %]" title="Back to the results search list">Back to results</a></li>
1025
                            <li class="right_results">
1025
                            <li class="right_results">
1026
                                [% IF ( nextBiblionumber ) %]
1026
                                [% IF ( nextBiblionumber ) %]
1027
                                    <a href="opac-detail.pl?biblionumber=[% nextBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( nextTitle ) %][% nextTitle | html %][% ELSE %]next biblio[% END %]">Next <i class="fa fa-angle-double-right"></i></a>
1027
                                    <a href="opac-detail.pl?biblionumber=[% nextBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( nextTitle ) %][% nextTitle | html %][% ELSE %]next biblio[% END %]">Next <i class="fa fa-angle-double-right" aria-hidden="true"></i></a>
1028
                                [% ELSE %]
1028
                                [% ELSE %]
1029
                                    <span>Next</span>
1029
                                    <span>Next</span>
1030
                                [% END %]
1030
                                [% END %]
Lines 1048-1054 Link Here
1048
                                <ul id="ul_pagination_lists">
1048
                                <ul id="ul_pagination_lists">
1049
                                    [% FOREACH listitem IN listResults %]
1049
                                    [% FOREACH listitem IN listResults %]
1050
                                        [% IF ( listitem.biblionumber == biblionumber ) %]
1050
                                        [% IF ( listitem.biblionumber == biblionumber ) %]
1051
                                            <li id="li_pag_[% loop.count | html %]" class="highlight" title="Go to detail"><span class="li_pag_index"><i class="fa fa-arrow-left"></i> [% loop.count  + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% title | html %]</a><br> [% IF ( author ) %]by [% author | html %][% END %]</li>
1051
                                            <li id="li_pag_[% loop.count | html %]" class="highlight" title="Go to detail"><span class="li_pag_index"><i class="fa fa-arrow-left" aria-hidden="true"></i> [% loop.count  + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% title | html %]</a><br> [% IF ( author ) %]by [% author | html %][% END %]</li>
1052
                                        [% ELSE %]
1052
                                        [% ELSE %]
1053
                                            <li id="li_pag_[% loop.count | html %]" title="Go to detail"><span class="li_pag_index">[% loop.count + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% listitem.biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% listitem.title | html %]</a><br> [% IF ( listitem.author ) %]by [% listitem.author | html %][% END %]</li>
1053
                                            <li id="li_pag_[% loop.count | html %]" title="Go to detail"><span class="li_pag_index">[% loop.count + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% listitem.biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% listitem.title | html %]</a><br> [% IF ( listitem.author ) %]by [% listitem.author | html %][% END %]</li>
1054
                                        [% END %]
1054
                                        [% END %]
Lines 1058-1064 Link Here
1058
                        </div>
1058
                        </div>
1059
                        [% END %]
1059
                        [% END %]
1060
                        <div class="pagination_footer">
1060
                        <div class="pagination_footer">
1061
                            <a href="#" class="close_pagination"><i class="fa fa-remove"></i> Close</a>
1061
                            <a href="#" class="close_pagination"><i class="fa fa-remove" aria-hidden="true"></i> Close</a>
1062
                        </div>
1062
                        </div>
1063
                    </div>
1063
                    </div>
1064
                [% END # / IF OpacBrowseResults && busc %]
1064
                [% END # / IF OpacBrowseResults && busc %]
Lines 1086-1098 Link Here
1086
                        [% FOREACH network IN SocialNetworks.split(",") %]
1086
                        [% FOREACH network IN SocialNetworks.split(",") %]
1087
                            [% SWITCH network -%]
1087
                            [% SWITCH network -%]
1088
                                [% CASE "facebook" -%]
1088
                                [% CASE "facebook" -%]
1089
                                    <div><a id="facebook" href="https://www.facebook.com/sharer.php?u=[% current_url |url %]&amp;t=[% title |url %]" title="Share on Facebook"><i class="fa fa-facebook"></i></a></div>
1089
                                    <div><a id="facebook" href="https://www.facebook.com/sharer.php?u=[% current_url |url %]&amp;t=[% title |url %]" title="Share on Facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a></div>
1090
                                [% CASE "linkedin" -%]
1090
                                [% CASE "linkedin" -%]
1091
                                    <div><a id="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&amp;url=[% current_url |url %]&amp;title=[% title |url %]" title="Share on LinkedIn"><i class="fa fa-linkedin"></i></a></div>
1091
                                    <div><a id="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&amp;url=[% current_url |url %]&amp;title=[% title |url %]" title="Share on LinkedIn"><i class="fa fa-linkedin" aria-hidden="true"></i></a></div>
1092
                                [% CASE "email" -%]
1092
                                [% CASE "email" -%]
1093
                                    <div><a id="email" href="mailto:?subject=[% title |url %]&amp;body=[% title |url %]%20([% current_url |url %])" title="Share by email"><i class="fa fa-envelope-o"></i></a></div>
1093
                                    <div><a id="email" href="mailto:?subject=[% title |url %]&amp;body=[% title |url %]%20([% current_url |url %])" title="Share by email"><i class="fa fa-envelope-o" aria-hidden="true"></i></a></div>
1094
                                [% CASE "twitter" -%]
1094
                                [% CASE "twitter" -%]
1095
                                    <div><a id="twitter" href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-text="[% title |url %]" data-lang="[% lang | html %]" title="Share on Twitter"><i class="fa fa-twitter"></i></a></div>
1095
                                    <div><a id="twitter" href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-text="[% title |url %]" data-lang="[% lang | html %]" title="Share on Twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a></div>
1096
                            [% END -%]
1096
                            [% END -%]
1097
                        [% END %]
1097
                        [% END %]
1098
                    </div>
1098
                    </div>
Lines 1328-1335 Link Here
1328
                    <h3 id="multiSearchLabel">Select the item(s) to search</h3>
1328
                    <h3 id="multiSearchLabel">Select the item(s) to search</h3>
1329
                </div>
1329
                </div>
1330
                <div class="modal-body">
1330
                <div class="modal-body">
1331
                    <a href="#" class="check_all"><i class="fa fa-check"></i> Select all</a> <span class="sep">|</span>
1331
                    <a href="#" class="check_all"><i class="fa fa-check" aria-hidden="true"></i> Select all</a> <span class="sep">|</span>
1332
                    <a href="#" class="check_none"><i class="fa fa-remove"></i> Select none</a>
1332
                    <a href="#" class="check_none"><i class="fa fa-remove" aria-hidden="true"></i> Select none</a>
1333
                    <ul id="termsList">
1333
                    <ul id="termsList">
1334
                    </ul>
1334
                    </ul>
1335
                </div>
1335
                </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (-4 / +4 lines)
Lines 64-72 Link Here
64
                            </p>
64
                            </p>
65
                            [% USE link_url = url('/cgi-bin/koha/opac-illrequests.pl', whole.value.other) %]
65
                            [% USE link_url = url('/cgi-bin/koha/opac-illrequests.pl', whole.value.other) %]
66
                            <a href="[% link_url _ '&amp;stage=copyrightclearance' | $raw %]"
66
                            <a href="[% link_url _ '&amp;stage=copyrightclearance' | $raw %]"
67
                               class="btn btn-sm btn-default"><i class="fa fa-check"></i> Yes</a>
67
                               class="btn btn-sm btn-default"><i class="fa fa-check" aria-hidden="true"></i> Yes</a>
68
                            <a href="/cgi-bin/koha/opac-illrequests.pl"
68
                            <a href="/cgi-bin/koha/opac-illrequests.pl"
69
                               class="btn btn-sm btn-default"><i class="fa fa-times"></i> No</a>
69
                               class="btn btn-sm btn-default"><i class="fa fa-times" aria-hidden="true"></i> No</a>
70
                        </div>
70
                        </div>
71
                    [% ELSE %]
71
                    [% ELSE %]
72
                        [% INCLUDE messages %]
72
                        [% INCLUDE messages %]
Lines 96-102 Link Here
96
                    <div id="illrequests-create-button" class="dropdown btn-group">
96
                    <div id="illrequests-create-button" class="dropdown btn-group">
97
                        [% IF backends.size > 1 %]
97
                        [% IF backends.size > 1 %]
98
                                <button class="btn btn-default dropdown-toggle" type="button" id="ill-backend-dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
98
                                <button class="btn btn-default dropdown-toggle" type="button" id="ill-backend-dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
99
                                    <i class="fa fa-plus"></i> Create a new request <span class="caret"></span>
99
                                    <i class="fa fa-plus" aria-hidden="true"></i> Create a new request <span class="caret"></span>
100
                                </button>
100
                                </button>
101
                                <ul id="backend-dropdown-options" class="dropdown-menu nojs" aria-labelledby="ill-backend-dropdown">
101
                                <ul id="backend-dropdown-options" class="dropdown-menu nojs" aria-labelledby="ill-backend-dropdown">
102
                                    [% FOREACH backend IN backends %]
102
                                    [% FOREACH backend IN backends %]
Lines 105-111 Link Here
105
                                </ul>
105
                                </ul>
106
                        [% ELSE %]
106
                        [% ELSE %]
107
                            <a id="ill-new" class="btn btn-default" href="/cgi-bin/koha/opac-illrequests.pl?method=create&amp;backend=[% backends.0 | html %]">
107
                            <a id="ill-new" class="btn btn-default" href="/cgi-bin/koha/opac-illrequests.pl?method=create&amp;backend=[% backends.0 | html %]">
108
                                <i class="fa fa-plus"></i> Create a new request
108
                                <i class="fa fa-plus" aria-hidden="true"></i> Create a new request
109
                            </a>
109
                            </a>
110
                        [% END %]
110
                        [% END %]
111
                    </div>
111
                    </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-1 / +1 lines)
Lines 107-113 Link Here
107
                        <div id="rssnews-container">
107
                        <div id="rssnews-container">
108
                            <!-- Logged in users have a branch code or it could be explicitly set -->
108
                            <!-- Logged in users have a branch code or it could be explicitly set -->
109
                            <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-news-rss.pl?branchcode=[% branchcode | uri %]">
109
                            <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-news-rss.pl?branchcode=[% branchcode | uri %]">
110
                                <i class="fa fa-rss"></i>
110
                                <i class="fa fa-rss" aria-hidden="true"></i>
111
                                [% IF Branches.all.size == 1 %]
111
                                [% IF Branches.all.size == 1 %]
112
                                    [% IF branchcode %]
112
                                    [% IF branchcode %]
113
                                        RSS feed for [% Branches.GetName( branchcode ) | html %] library news
113
                                        RSS feed for [% Branches.GetName( branchcode ) | html %] library news
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-2 / +2 lines)
Lines 363-371 Link Here
363
                                                                [% IF ( itemLoo.available ) %]
363
                                                                [% IF ( itemLoo.available ) %]
364
                                                                    <input type="radio" class="checkitem checkitem_[% bibitemloo.biblionumber | html %]" name="checkitem_[% bibitemloo.biblionumber | html %]" value="[% itemLoo.itemnumber | html %]" />
364
                                                                    <input type="radio" class="checkitem checkitem_[% bibitemloo.biblionumber | html %]" name="checkitem_[% bibitemloo.biblionumber | html %]" value="[% itemLoo.itemnumber | html %]" />
365
                                                                [% ELSE %]
365
                                                                [% ELSE %]
366
                                                                    <input disabled="disabled" type="radio" class="checkitem" name="checkitem" value="[% itemLoo.itemnumber | html %]"
366
                                                                    <input disabled="disabled" type="radio" aria-label="Cannot be put on hold" class="checkitem" name="checkitem" value="[% itemLoo.itemnumber | html %]"
367
                                                                           style="display:none;" />
367
                                                                           style="display:none;" />
368
                                                                    <i class="fa fa-remove danger" title="Cannot be put on hold"></i>
368
                                                                    <i class="fa fa-remove danger" aria-hidden="true" title="Cannot be put on hold"></i>
369
                                                                [% END %]
369
                                                                [% END %]
370
370
371
                                                                [% IF ( itemLoo.copynumber ) %]
371
                                                                [% IF ( itemLoo.copynumber ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-8 / +8 lines)
Lines 61-68 Link Here
61
                        <p>
61
                        <p>
62
                            [% IF ( searchdesc ) %]
62
                            [% IF ( searchdesc ) %]
63
                                No results found for that in [% LibraryName | html %] catalog.
63
                                No results found for that in [% LibraryName | html %] catalog.
64
                                <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;format=rss" class="btn btn-link rsssearchlink noprint">
64
                                <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;format=rss" aria-label="Subscribe to this search" class="btn btn-link rsssearchlink noprint">
65
                                    <i class="fa fa-rss rsssearchicon" title="Subscribe to this search"></i>
65
                                    <i class="fa fa-rss rsssearchicon" aria-hidden="true" title="Subscribe to this search"></i>
66
                                </a>
66
                                </a>
67
                            [% ELSE %]
67
                            [% ELSE %]
68
                                You did not specify any search criteria.
68
                                You did not specify any search criteria.
Lines 107-114 Link Here
107
                                [% END %]
107
                                [% END %]
108
                            ).
108
                            ).
109
                        [% END %]
109
                        [% END %]
110
                        <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;format=rss" class="btn btn-link rsssearchlink noprint">
110
                        <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;format=rss" class="btn btn-link rsssearchlink noprint" aria-label="Subscribe to this search">
111
                            <i class="fa fa-rss rsssearchicon" title="Subscribe to this search"></i>
111
                            <i class="fa fa-rss rsssearchicon" aria-hidden="true" title="Subscribe to this search"></i>
112
                        </a>
112
                        </a>
113
                    [% END # / IF total %]
113
                    [% END # / IF total %]
114
                    </p>
114
                    </p>
Lines 190-197 Link Here
190
                                    <div id="selections-toolbar" class="toolbar noprint">
190
                                    <div id="selections-toolbar" class="toolbar noprint">
191
                                        [% IF ( OpacHighlightedWords ) %]
191
                                        [% IF ( OpacHighlightedWords ) %]
192
                                            <div class="highlight_controls noprint">
192
                                            <div class="highlight_controls noprint">
193
                                                <a href="#" class="btn btn-link highlight_toggle" id="highlight_toggle_off"><i class="fa fa-fw fa-pencil"></i> Unhighlight</a>
193
                                                <a href="#" class="btn btn-link highlight_toggle" id="highlight_toggle_off"><i class="fa fa-fw fa-pencil" aria-hidden="true"></i> Unhighlight</a>
194
                                                <a href="#" class="btn btn-link highlight_toggle" id="highlight_toggle_on"><i class="fa fa-fw fa-pencil"></i> Highlight</a>
194
                                                <a href="#" class="btn btn-link highlight_toggle" id="highlight_toggle_on"><i class="fa fa-fw fa-pencil" aria-hidden="true"></i> Highlight</a>
195
                                            </div>
195
                                            </div>
196
                                            <span class="sep">|</span>
196
                                            <span class="sep">|</span>
197
                                        [% END %]
197
                                        [% END %]
Lines 207-213 Link Here
207
207
208
                                                [% IF ( TagsInputEnabled && loggedinusername ) %]
208
                                                [% IF ( TagsInputEnabled && loggedinusername ) %]
209
                                                    <span id="tagsel_span">
209
                                                    <span id="tagsel_span">
210
                                                        <button id="tagsel_tag" class="btn btn-link disabled" type="submit" style="display:none"><i class="fa fa-fw fa-tag"></i> Tag</button>
210
                                                        <button id="tagsel_tag" class="btn btn-link disabled" type="submit" style="display:none"><i class="fa fa-fw fa-tag" aria-hidden="true"></i> Tag</button>
211
                                                    </span>
211
                                                    </span>
212
                                                    <div id="tagsel_form" style="display:none">
212
                                                    <div id="tagsel_form" style="display:none">
213
                                                        <label for="tagsel_new">New tag:</label>
213
                                                        <label for="tagsel_new">New tag:</label>
Lines 853-859 $(document).ready(function(){ Link Here
853
    });
853
    });
854
854
855
[% IF ( ( Koha.Preference( 'RequestOnOpac' ) == 1 ) && ( Koha.Preference( 'opacuserlogin' ) == 1 ) && DisplayMultiPlaceHold ) %]
855
[% IF ( ( Koha.Preference( 'RequestOnOpac' ) == 1 ) && ( Koha.Preference( 'opacuserlogin' ) == 1 ) && DisplayMultiPlaceHold ) %]
856
    $("#placehold").html("<button class=\"btn btn-link hold disabled\" type=\"submit\"><i class=\"fa fa-fw fa-bookmark\"></i>" + _("Place hold") + "</button>");
856
    $("#placehold").html("<button class=\"btn btn-link hold disabled\" type=\"submit\"><i class=\"fa fa-fw fa-bookmark\" aria-hidden=\"true\"></i>" + _("Place hold") + "</button>");
857
    $("#placehold").find("button.hold").click(function(){
857
    $("#placehold").find("button.hold").click(function(){
858
        holdMultiple();
858
        holdMultiple();
859
        return false;
859
        return false;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-search-history.tt (-4 / +4 lines)
Lines 72-79 Link Here
72
                                                        <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
72
                                                        <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
73
                                                        <td><span title="[% s.time | html %]">[% s.time |$KohaDates  with_hours => 1 %]</span></td>
73
                                                        <td><span title="[% s.time | html %]">[% s.time |$KohaDates  with_hours => 1 %]</span></td>
74
                                                        <td>
74
                                                        <td>
75
                                                            <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;[% s.query_cgi | $raw %]&amp;count=[% countrss | uri %]&amp;sort_by=acqdate_dsc&amp;format=rss" class="rsssearchlink">
75
                                                            <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;[% s.query_cgi | $raw %]&amp;count=[% countrss | uri %]&amp;sort_by=acqdate_dsc&amp;format=rss" aria-label="Subscribe to this search" class="rsssearchlink">
76
                                                                <i class="fa fa-rss rsssearchicon" title="Subscribe to this search"></i>
76
                                                                <i class="fa fa-rss rsssearchicon" aria-hidden="true" title="Subscribe to this search"></i>
77
                                                            </a>
77
                                                            </a>
78
                                                            <a href="/cgi-bin/koha/opac-search.pl?[% s.query_cgi | $raw %]">[% s.query_desc | html %]</a>
78
                                                            <a href="/cgi-bin/koha/opac-search.pl?[% s.query_cgi | $raw %]">[% s.query_desc | html %]</a>
79
                                                        </td>
79
                                                        </td>
Lines 117-124 Link Here
117
                                                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
117
                                                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
118
                                                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates  with_hours => 1 %]</span></td>
118
                                                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates  with_hours => 1 %]</span></td>
119
                                                    <td>
119
                                                    <td>
120
                                                        <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;[% s.query_cgi | $raw %]&amp;count=[% countrss | uri %]&amp;sort_by=acqdate_dsc&amp;format=rss" class="rsssearchlink">
120
                                                        <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | $raw %]&amp;[% s.query_cgi | $raw %]&amp;count=[% countrss | uri %]&amp;sort_by=acqdate_dsc&amp;format=rss" aria-label="Subscribe to this search" class="rsssearchlink">
121
                                                            <i class="fa fa-rss rsssearchicon" title="Subscribe to this search"></i>
121
                                                            <i class="fa fa-rss rsssearchicon" aria-hidden="true" title="Subscribe to this search"></i>
122
                                                        </a>
122
                                                        </a>
123
                                                        <a href="/cgi-bin/koha/opac-search.pl?[% s.query_cgi | $raw %]">
123
                                                        <a href="/cgi-bin/koha/opac-search.pl?[% s.query_cgi | $raw %]">
124
                                                            [% s.query_desc | html %]
124
                                                            [% s.query_desc | html %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (-20 / +20 lines)
Lines 153-160 Link Here
153
                    [% IF shelf AND op == 'view' %]
153
                    [% IF shelf AND op == 'view' %]
154
                        <h3>
154
                        <h3>
155
                            [% shelf.shelfname | html %]
155
                            [% shelf.shelfname | html %]
156
                            <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-shelves.pl?rss=1&amp;op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]" class="rss-list-link noprint">
156
                            <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-shelves.pl?rss=1&amp;op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]" class="rss-list-link noprint" aria-label="Subscribe to this list">
157
                                <i class="fa fa-fw fa-rss rsssearchicon" title="Subscribe to this list"></i>
157
                                <i class="fa fa-fw fa-rss rsssearchicon" aria-hidden="true" title="Subscribe to this list"></i>
158
                            </a>
158
                            </a>
159
                        </h3>
159
                        </h3>
160
160
Lines 162-175 Link Here
162
                            <div id="floating">
162
                            <div id="floating">
163
                             <div id="toolbar" class="toolbar clearfix">
163
                             <div id="toolbar" class="toolbar clearfix">
164
                                 <div class="list-actions">
164
                                 <div class="list-actions">
165
                                    <a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus"></i> New list</a> <span class="sep">|</span>
165
                                    <a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus" aria-hidden="true"></i> New list</a> <span class="sep">|</span>
166
                                    <a href="/cgi-bin/koha/opac-downloadshelf.pl?shelfnumber=[% shelf.shelfnumber | uri %]" class="btn btn-link download" data-toggle="modal" data-target="#modalWin"><i class="fa fa-fw fa-download"></i> Download list</a>
166
                                    <a href="/cgi-bin/koha/opac-downloadshelf.pl?shelfnumber=[% shelf.shelfnumber | uri %]" class="btn btn-link download" data-toggle="modal" data-target="#modalWin"><i class="fa fa-fw fa-download" aria-hidden="true"></i> Download list</a>
167
167
168
                                    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
168
                                    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
169
                                        <span class="sendlist"><a href="/cgi-bin/koha/opac-sendshelf.pl?shelfid=[% shelf.shelfnumber | uri %]" class="btn btn-link send" onclick="open('/cgi-bin/koha/opac-sendshelf.pl?shelfid=[% shelf.shelfnumber | html %]','win_form','scrollbars=yes,resizable=yes,height=400,width=500,top=50,left=100'); return false; "><i class="fa fa-fw fa-envelope"></i> Send list</a></span>
169
                                        <span class="sendlist"><a href="/cgi-bin/koha/opac-sendshelf.pl?shelfid=[% shelf.shelfnumber | uri %]" class="btn btn-link send" onclick="open('/cgi-bin/koha/opac-sendshelf.pl?shelfid=[% shelf.shelfnumber | html %]','win_form','scrollbars=yes,resizable=yes,height=400,width=500,top=50,left=100'); return false; "><i class="fa fa-fw fa-envelope" aria-hidden="true"></i> Send list</a></span>
170
                                    [% END %]
170
                                    [% END %]
171
171
172
                                    <a class="btn btn-link print-small" target="_blank" href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | html %]&sortfield=[% sortfield | html %]&direction=[% direction | uri %]&print=1"><i class="fa fa-fw fa-print"></i> Print list</a>
172
                                    <a class="btn btn-link print-small" target="_blank" href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | html %]&sortfield=[% sortfield | html %]&direction=[% direction | uri %]&print=1"><i class="fa fa-fw fa-print" aria-hidden="true"></i> Print list</a>
173
173
174
                                    [% IF can_manage_shelf %]
174
                                    [% IF can_manage_shelf %]
175
                                        <span class="sep">|</span>
175
                                        <span class="sep">|</span>
Lines 178-184 Link Here
178
                                            <input type="hidden" name="referer" value="view" />
178
                                            <input type="hidden" name="referer" value="view" />
179
                                            <input type='hidden' name='category' value='[% shelf.category | html %]' />
179
                                            <input type='hidden' name='category' value='[% shelf.category | html %]' />
180
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
180
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
181
                                            <button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o"></i> Edit list</button>
181
                                            <button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o" aria-hidden="true"></i> Edit list</button>
182
                                        </form>
182
                                        </form>
183
183
184
                                        <form method="post" action="/cgi-bin/koha/opac-shelves.pl" class="form-inline">
184
                                        <form method="post" action="/cgi-bin/koha/opac-shelves.pl" class="form-inline">
Lines 186-195 Link Here
186
                                            <input type="hidden" name="referer" value="list" />
186
                                            <input type="hidden" name="referer" value="list" />
187
                                            <input type='hidden' name='category' value='[% shelf.category | html %]' />
187
                                            <input type='hidden' name='category' value='[% shelf.category | html %]' />
188
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
188
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
189
                                            <button type="submit" class="btn btn-link remove deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);"><i class="fa fa-fw fa-remove"></i> Delete list</button>
189
                                            <button type="submit" class="btn btn-link remove deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);"><i class="fa fa-fw fa-remove" aria-hidden="true"></i> Delete list</button>
190
                                        </form>
190
                                        </form>
191
                                        [% IF category == PRIVATE && Koha.Preference('OpacAllowSharingPrivateLists') %]
191
                                        [% IF category == PRIVATE && Koha.Preference('OpacAllowSharingPrivateLists') %]
192
                                            <a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% shelf.shelfnumber | uri %]" class="btn btn-link sharelist"><i class="fa fa-fw fa-share"></i> Share list</a>
192
                                            <a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% shelf.shelfnumber | uri %]" class="btn btn-link sharelist"><i class="fa fa-fw fa-share" aria-hidden="true"></i> Share list</a>
193
                                        [% END %]
193
                                        [% END %]
194
                                    [% ELSIF category == PRIVATE # not manageshelf and private means shared %]
194
                                    [% ELSIF category == PRIVATE # not manageshelf and private means shared %]
195
                                        <form action="/cgi-bin/koha/opac-shelves.pl" method="post" class="form-inline">
195
                                        <form action="/cgi-bin/koha/opac-shelves.pl" method="post" class="form-inline">
Lines 197-203 Link Here
197
                                            <input type="hidden" name="referer" value="list" />
197
                                            <input type="hidden" name="referer" value="list" />
198
                                            <input type='hidden' name='category' value='[% category | html %]' />
198
                                            <input type='hidden' name='category' value='[% category | html %]' />
199
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
199
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
200
                                            <button type="submit" class="btn btn-link deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_REMOVE_SHARE);"><i class="fa fa-fw fa-remove"></i> Remove share</button>
200
                                            <button type="submit" class="btn btn-link deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_REMOVE_SHARE);"><i class="fa fa-fw fa-remove" aria-hidden="true"></i> Remove share</button>
201
                                        </form>
201
                                        </form>
202
                                    [% END %]
202
                                    [% END %]
203
                                </div>
203
                                </div>
Lines 285-291 Link Here
285
                                    [% END %]
285
                                    [% END %]
286
                                    [% IF ( TagsInputEnabled && loggedinusername ) %]
286
                                    [% IF ( TagsInputEnabled && loggedinusername ) %]
287
                                        <span id="addtags">
287
                                        <span id="addtags">
288
                                          <a id="tagsel_tag" href="#" class="btn btn-link btn-disabled"><i class="fa fa-fw fa-tag"></i> Tag</a>
288
                                          <a id="tagsel_tag" href="#" class="btn btn-link btn-disabled"><i class="fa fa-fw fa-tag" aria-hidden="true"></i> Tag</a>
289
                                        </span>
289
                                        </span>
290
                                        <span id="tagsel_form" style="display:none">
290
                                        <span id="tagsel_form" style="display:none">
291
                                          <label for="tagsel_new">New tag(s), separated by a comma:</label>
291
                                          <label for="tagsel_new">New tag(s), separated by a comma:</label>
Lines 492-498 Link Here
492
                        [% ELSE %]
492
                        [% ELSE %]
493
                            <div id="toolbar" class="toolbar clearfix">
493
                            <div id="toolbar" class="toolbar clearfix">
494
                                <div class="list-actions">
494
                                <div class="list-actions">
495
                                    <a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus"></i> New list</a>
495
                                    <a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus" aria-hidden="true"></i> New list</a>
496
                                    [% IF can_manage_shelf %]
496
                                    [% IF can_manage_shelf %]
497
                                        <span class="sep">|</span>
497
                                        <span class="sep">|</span>
498
                                        <form method="get" action="/cgi-bin/koha/opac-shelves.pl" class="form-inline">
498
                                        <form method="get" action="/cgi-bin/koha/opac-shelves.pl" class="form-inline">
Lines 500-513 Link Here
500
                                            <input type="hidden" name="referer" value="view" />
500
                                            <input type="hidden" name="referer" value="view" />
501
                                            <input type="hidden" name="category" value="[% shelf.category | html %]" />
501
                                            <input type="hidden" name="category" value="[% shelf.category | html %]" />
502
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
502
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
503
                                            <button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o"></i> Edit list</button>
503
                                            <button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o" aria-hidden="true"></i> Edit list</button>
504
                                        </form>
504
                                        </form>
505
505
506
                                        <form method="post" action="/cgi-bin/koha/opac-shelves.pl" class="form-inline">
506
                                        <form method="post" action="/cgi-bin/koha/opac-shelves.pl" class="form-inline">
507
                                            <input type="hidden" name="op" value="delete" />
507
                                            <input type="hidden" name="op" value="delete" />
508
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]"/>
508
                                            <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]"/>
509
                                            <input type="hidden" name="category" value="[% shelf.category | html %]" />
509
                                            <input type="hidden" name="category" value="[% shelf.category | html %]" />
510
                                            <button type="submit" class="btn btn-link remove deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);"><i class="fa fa-fw fa-remove"></i> Delete list</button>
510
                                            <button type="submit" class="btn btn-link remove deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);"><i class="fa fa-fw fa-remove" aria-hidden="true"></i> Delete list</button>
511
                                        </form>
511
                                        </form>
512
                                    [% END %]
512
                                    [% END %]
513
                                </div> <!-- / .list-actions -->
513
                                </div> <!-- / .list-actions -->
Lines 646-652 Link Here
646
                        [% END %]
646
                        [% END %]
647
647
648
                            [% IF loggedinusername %]
648
                            [% IF loggedinusername %]
649
                                <div id="toolbar" class="toolbar"><a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-plus"></i> New list</a></div>
649
                                <div id="toolbar" class="toolbar"><a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-plus" aria-hidden="true"></i> New list</a></div>
650
                            [% ELSE %]
650
                            [% ELSE %]
651
                                [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
651
                                [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
652
                                    <div class="alert alert-info"><a href="/cgi-bin/koha/opac-shelves.pl?op=add_form">Log in to create a new list</a></div>
652
                                    <div class="alert alert-info"><a href="/cgi-bin/koha/opac-shelves.pl?op=add_form">Log in to create a new list</a></div>
Lines 683-689 Link Here
683
                                                            <input type="hidden" name="category" value="[% s.category | html %]" />
683
                                                            <input type="hidden" name="category" value="[% s.category | html %]" />
684
                                                            <input type="hidden" name="op" value="edit_form" />
684
                                                            <input type="hidden" name="op" value="edit_form" />
685
                                                            <input type="hidden" name="referer" value="list" />
685
                                                            <input type="hidden" name="referer" value="list" />
686
                                                            <button type="submit" class="btn btn-link editshelf"><i class="fa fa-pencil-square-o"></i> Edit</button>
686
                                                            <button type="submit" class="btn btn-link editshelf"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> Edit</button>
687
                                                        </form>
687
                                                        </form>
688
                                                    [% END %]
688
                                                    [% END %]
689
                                                    [% IF s.can_be_deleted( loggedinusernumber ) %]
689
                                                    [% IF s.can_be_deleted( loggedinusernumber ) %]
Lines 692-698 Link Here
692
                                                            <input type="hidden" name="referer" value="list" />
692
                                                            <input type="hidden" name="referer" value="list" />
693
                                                            <input type='hidden' name='category' value='[% category | html %]' />
693
                                                            <input type='hidden' name='category' value='[% category | html %]' />
694
                                                            <input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" />
694
                                                            <input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" />
695
                                                            <button type="submit" class="btn btn-link remove deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);"><i class="fa fa-remove"></i> Delete</button>
695
                                                            <button type="submit" class="btn btn-link remove deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);"><i class="fa fa-remove" aria-hidden="true"></i> Delete</button>
696
                                                        </form>
696
                                                        </form>
697
                                                    [% END %]
697
                                                    [% END %]
698
                                                    [% IF s.is_private AND s.can_be_managed( loggedinusernumber ) AND Koha.Preference('OpacAllowSharingPrivateLists') %]
698
                                                    [% IF s.is_private AND s.can_be_managed( loggedinusernumber ) AND Koha.Preference('OpacAllowSharingPrivateLists') %]
Lines 834-840 $(function() { Link Here
834
    $("a.print").show();
834
    $("a.print").show();
835
835
836
    [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'RequestOnOpac' ) == 1 ) ) %]
836
    [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'RequestOnOpac' ) == 1 ) ) %]
837
        $("#placehold").html("<a href=\"#\" class=\"btn btn-link hold tag_hides btn-disabled\"><i class=\"fa fa-fw fa-bookmark\"></i> "+_("Place hold")+"<\/a>");
837
        $("#placehold").html("<a href=\"#\" class=\"btn btn-link hold tag_hides btn-disabled\"><i class=\"fa fa-fw fa-bookmark\" aria-hidden=\"true\"></i> "+_("Place hold")+"<\/a>");
838
        $("#selections-toolbar a.hold").click(function(){
838
        $("#selections-toolbar a.hold").click(function(){
839
            holdSelections();
839
            holdSelections();
840
            return false;
840
            return false;
Lines 927-933 $(function() { Link Here
927
                return false;
927
                return false;
928
            }
928
            }
929
        });
929
        });
930
        $("#removeitems").html("<a href=\"#\" class=\"btn btn-link disabled removeitems tag_hides\"><i class=\"fa fa-fw fa-remove\"></i> "+_("Remove from list")+"</a>")
930
        $("#removeitems").html("<a href=\"#\" class=\"btn btn-link disabled removeitems tag_hides\"><i class=\"fa fa-fw fa-remove\" aria-hidden=\"true\"></i> "+_("Remove from list")+"</a>")
931
        .click(function(){
931
        .click(function(){
932
            $("#myform").submit();
932
            $("#myform").submit();
933
            return false;
933
            return false;
Lines 969-975 $(function() { Link Here
969
function sortMenu( sorting_form ){
969
function sortMenu( sorting_form ){
970
    var shelfnumber = sorting_form.find("input[name='shelfnumber']").val();
970
    var shelfnumber = sorting_form.find("input[name='shelfnumber']").val();
971
    var sort_link = "/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=" + shelfnumber + "&sortfield=";
971
    var sort_link = "/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=" + shelfnumber + "&sortfield=";
972
    var menu = "<div class=\"btn-group\"><button type=\"button\" class=\"btn btn-link dropdown-toggle\" data-toggle=\"dropdown\" id=\"sortmenu\" aria-haspopup=\"true\" aria-expanded=\"false\"><i class=\"fa fa-sort\"></i> " + _("Sort") + "</span></button><ul class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"sortmenu\">";
972
    var menu = "<div class=\"btn-group\"><button type=\"button\" class=\"btn btn-link dropdown-toggle\" data-toggle=\"dropdown\" id=\"sortmenu\" aria-haspopup=\"true\" aria-expanded=\"false\"><i class=\"fa fa-sort\" aria-hidden=\"true\"></i> " + _("Sort") + "</span></button><ul class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"sortmenu\">";
973
    $("#sortfield").children().each(function(){
973
    $("#sortfield").children().each(function(){
974
        if( $(this)[0].tagName.toUpperCase() == "OPTION" ){
974
        if( $(this)[0].tagName.toUpperCase() == "OPTION" ){
975
            menu += "<li><a href=\"" + sort_link + $(this).val() + "\">" + $(this).text() + "</a></li>";
975
            menu += "<li><a href=\"" + sort_link + $(this).val() + "\">" + $(this).text() + "</a></li>";
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-showreviews.tt (-1 / +1 lines)
Lines 29-35 Link Here
29
                    <div class="span12">
29
                    <div class="span12">
30
                [% END %]
30
                [% END %]
31
                   <div id="showreviews" class="searchresults maincontent">
31
                   <div id="showreviews" class="searchresults maincontent">
32
                        <h3>Recent comments <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-showreviews.pl?format=rss" class="rsssearchlink"><i class="fa fa-rss rsssearchicon" title="Subscribe to recent comments"></i></a></h3>
32
                        <h3>Recent comments <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-showreviews.pl?format=rss" class="rsssearchlink" aria-label="Subscribe to recent comments"><i class="fa fa-rss rsssearchicon" aria-hidden="true" title="Subscribe to recent comments"></i></a></h3>
33
                        <table class="table table-striped">
33
                        <table class="table table-striped">
34
                            [% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
34
                            [% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
35
                            [% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %]
35
                            [% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt (-3 / +3 lines)
Lines 288-294 Link Here
288
                                        [% ELSIF ( Koha.Preference('MaxOpenSuggestions') != '' && patrons_pending_suggestions_count >= Koha.Preference('MaxOpenSuggestions') ) %]
288
                                        [% ELSIF ( Koha.Preference('MaxOpenSuggestions') != '' && patrons_pending_suggestions_count >= Koha.Preference('MaxOpenSuggestions') ) %]
289
                                                <p class="TooManySuggestionsText">You have reached your limit for suggestions you can place at this time ([% Koha.Preference('MaxOpenSuggestions') | html %]).</br>Once the library has processed those suggestions you will be able to place more.</p>
289
                                                <p class="TooManySuggestionsText">You have reached your limit for suggestions you can place at this time ([% Koha.Preference('MaxOpenSuggestions') | html %]).</br>Once the library has processed those suggestions you will be able to place more.</p>
290
                                        [% ELSE %]
290
                                        [% ELSE %]
291
                                                <a class="btn btn-link new" href="/cgi-bin/koha/opac-suggestions.pl?op=add"><i class="fa fa-plus"></i> New purchase suggestion</a>
291
                                                <a class="btn btn-link new" href="/cgi-bin/koha/opac-suggestions.pl?op=add"><i class="fa fa-plus"  aria-hidden="true"></i> New purchase suggestion</a>
292
                                        [% END %]
292
                                        [% END %]
293
                                        </div>
293
                                        </div>
294
                                    [% END %]
294
                                    [% END %]
Lines 404-410 Link Here
404
                                    [% ELSIF ( Koha.Preference('MaxOpenSuggestions') != ''  && patrons_pending_suggestions_count >= Koha.Preference('MaxOpenSuggestions') ) %]
404
                                    [% ELSIF ( Koha.Preference('MaxOpenSuggestions') != ''  && patrons_pending_suggestions_count >= Koha.Preference('MaxOpenSuggestions') ) %]
405
                                        <p class="TooManySuggestionsText">You have reached your limit for suggestions you can place at this time.</br>Once the library has processed those suggestions you will be able to place more.</p>
405
                                        <p class="TooManySuggestionsText">You have reached your limit for suggestions you can place at this time.</br>Once the library has processed those suggestions you will be able to place more.</p>
406
                                    [% ELSE %]
406
                                    [% ELSE %]
407
                                        <p><a class="btn btn-link new" href="/cgi-bin/koha/opac-suggestions.pl?op=add"><i class="fa fa-plus"></i> New purchase suggestion</a></p>
407
                                        <p><a class="btn btn-link new" href="/cgi-bin/koha/opac-suggestions.pl?op=add"><i class="fa fa-plus" aria-hidden="true"></i> New purchase suggestion</a></p>
408
                                    [% END %]
408
                                    [% END %]
409
                                [% END %]
409
                                [% END %]
410
                            [% END # / IF suggestions_loop %]
410
                            [% END # / IF suggestions_loop %]
Lines 466-472 Link Here
466
        $(".cb").click(function(){
466
        $(".cb").click(function(){
467
          enableCheckboxActions();
467
          enableCheckboxActions();
468
        });
468
        });
469
        $("#removeitems").html("<a href=\"#\" class=\"btn btn-link removeitems tag_hides btn-disabled\"><i class=\"fa fa-trash\"></i> "+_("Delete")+"</a>");
469
        $("#removeitems").html("<a href=\"#\" class=\"btn btn-link removeitems tag_hides btn-disabled\"><i class=\"fa fa-trash\" aria-hidden=\"true\"></i> "+_("Delete")+"</a>");
470
470
471
        enableCheckboxActions();
471
        enableCheckboxActions();
472
472
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-2 / +2 lines)
Lines 739-745 Link Here
739
                                                    <span class="tdlabel">Cancel:</span>
739
                                                    <span class="tdlabel">Cancel:</span>
740
                                                    <form action="/cgi-bin/koha/opac-article-request-cancel.pl" id="delete_article_request_[% ar.id | html %]">
740
                                                    <form action="/cgi-bin/koha/opac-article-request-cancel.pl" id="delete_article_request_[% ar.id | html %]">
741
                                                        <input type="hidden" name="id" value="[% ar.id | html %]" />
741
                                                        <input type="hidden" name="id" value="[% ar.id | html %]" />
742
                                                        <button data-title="[% ar.biblio.title | html %] [% ar.item.enumchron | html %]" data-article-request_id="[% ar.id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-article-request"><i class="fa fa-remove"></i> Cancel</button>
742
                                                        <button data-title="[% ar.biblio.title | html %] [% ar.item.enumchron | html %]" data-article-request_id="[% ar.id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-article-request"><i class="fa fa-remove" aria-hidden="true"></i> Cancel</button>
743
                                                    </form>
743
                                                    </form>
744
                                                </td>
744
                                                </td>
745
                                            </tr>
745
                                            </tr>
Lines 868-874 Link Here
868
                    $("#renewall").submit();
868
                    $("#renewall").submit();
869
                });
869
                });
870
                [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
870
                [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
871
                    $("#checkoutst caption").append("<div id=\"renewcontrols\"><a id=\"renewselected_link\" class=\"btn btn-link\" href=\"#\"><i class=\"fa fa-check\"></i> "+_("Renew selected")+"</a> <a id=\"renewall_link\" class=\"btn btn-link\" href=\"#\"><span class=\"fa-stack\"><i class=\"fa fa-check fa-stack-1x\"></i><i class=\"fa fa-check fa-stack-1x\"></i></span> "+_("Renew all")+"</a></div>");
871
                    $("#checkoutst caption").append("<div id=\"renewcontrols\"><a id=\"renewselected_link\" class=\"btn btn-link\" href=\"#\"><i class=\"fa fa-check\" aria-hidden=\"true\"></i> "+_("Renew selected")+"</a> <a id=\"renewall_link\" class=\"btn btn-link\" href=\"#\"><span class=\"fa-stack\"><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i></span> "+_("Renew all")+"</a></div>");
872
                [% END %]
872
                [% END %]
873
            [% END %]
873
            [% END %]
874
874
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sci/sci-main.tt (-2 / +2 lines)
Lines 56-62 Link Here
56
                <a class="brand" href="/cgi-bin/koha/sci/sci-main.pl"><img src="[% interface | html %]/[% theme | html %]/images/koha-green-logo.png" alt=""></a>
56
                <a class="brand" href="/cgi-bin/koha/sci/sci-main.pl"><img src="[% interface | html %]/[% theme | html %]/images/koha-green-logo.png" alt=""></a>
57
                <div id="checkouthelp">
57
                <div id="checkouthelp">
58
                    <ul class="nav pull-right">
58
                    <ul class="nav pull-right">
59
                        <li><a href="/cgi-bin/koha/sci/sci-main.pl" class="helpModal-trigger" role="button" data-toggle="modal"><i class="fa fa-info-circle"></i> Help</a></li>
59
                        <li><a href="/cgi-bin/koha/sci/sci-main.pl" class="helpModal-trigger" role="button" data-toggle="modal"><i class="fa fa-info-circle" aria-hidden="true"></i> Help</a></li>
60
                        <li><a id="sci_logout" href="/cgi-bin/koha/sci/sci-main.pl?logout.x=1" class="logout">Log out</a></li>
60
                        <li><a id="sci_logout" href="/cgi-bin/koha/sci/sci-main.pl?logout.x=1" class="logout">Log out</a></li>
61
                    </ul>
61
                    </ul>
62
                </div>
62
                </div>
Lines 124-130 Link Here
124
                                </table>
124
                                </table>
125
                                <div>
125
                                <div>
126
                                    <form method="post" action="#" id="finish_form">
126
                                    <form method="post" action="#" id="finish_form">
127
                                        <button id="sci_finish_button" type="submit" class="btn"><i class="fa fa-check"></i> Finish</button>
127
                                        <button id="sci_finish_button" type="submit" class="btn"><i class="fa fa-check" aria-hidden="true"></i> Finish</button>
128
                                    </form>
128
                                    </form>
129
                                </div>
129
                                </div>
130
                        [% ELSE %]
130
                        [% ELSE %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-8 / +7 lines)
Lines 92-98 Link Here
92
                                    <input type="hidden" name="patronid" value="[% patronid | html %]" />
92
                                    <input type="hidden" name="patronid" value="[% patronid | html %]" />
93
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
93
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
94
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
94
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
95
                                    <button type="submit" name="returnbook" class="btn"><i class="fa fa-undo"></i> Return this item</button>
95
                                    <button type="submit" name="returnbook" class="btn"><i class="fa fa-undo" aria-hidden="true"></i> Return this item</button>
96
                                </form>
96
                                </form>
97
                            [% END %]
97
                            [% END %]
98
98
Lines 120-126 Link Here
120
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
120
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
121
                                    <input type="hidden" name="confirmed" value="" />
121
                                    <input type="hidden" name="confirmed" value="" />
122
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
122
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
123
                                    <button type="submit" name="returnbook" class="btn"><i class="fa fa-undo"></i> Return this item</button>
123
                                    <button type="submit" name="returnbook" class="btn"><i class="fa fa-undo" aria-hidden="true"></i> Return this item</button>
124
                                </form>
124
                                </form>
125
                            [% END %]
125
                            [% END %]
126
126
Lines 131-137 Link Here
131
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
131
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
132
                                    <input type="hidden" name="confirmed" value="1" />
132
                                    <input type="hidden" name="confirmed" value="1" />
133
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
133
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
134
                                    <button type="submit" name="confirm" class="btn"><i class="fa fa-refresh"></i> Renew item</button>
134
                                    <button type="submit" name="confirm" class="btn"><i class="fa fa-refresh" aria-hidden="true"></i> Renew item</button>
135
                                  </form>
135
                                  </form>
136
                            [% ELSE %]
136
                            [% ELSE %]
137
                                <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post">
137
                                <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post">
Lines 140-146 Link Here
140
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
140
                                    <input type="hidden" name="barcode" value="[% barcode | html %]" />
141
                                    <input type="hidden" name="confirmed" value="1" />
141
                                    <input type="hidden" name="confirmed" value="1" />
142
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
142
                                    <input type="hidden" name="newissues" value="[% newissues | html %]" />
143
                                    <button type="submit" class="btn"><i class="fa fa-refresh"></i> Renew item</button>
143
                                    <button type="submit" class="btn"><i class="fa fa-refresh" aria-hidden="true"></i> Renew item</button>
144
                                </form>
144
                                </form>
145
                            [% END %]
145
                            [% END %]
146
146
Lines 148-154 Link Here
148
                                <input type="hidden" name="op" value="" />
148
                                <input type="hidden" name="op" value="" />
149
                                <input type="hidden" name="patronid" value="[% patronid | html %]" />
149
                                <input type="hidden" name="patronid" value="[% patronid | html %]" />
150
                                <input type="hidden" name="newissues" value="[% newissues | html %]" />
150
                                <input type="hidden" name="newissues" value="[% newissues | html %]" />
151
                                <button type="submit" class="btn"><i class="fa fa-cancel"></i> Cancel</button>
151
                                <button type="submit" class="btn"><i class="fa fa-cancel" aria-hidden="true"></i> Cancel</button>
152
                            </form>
152
                            </form>
153
                        </div>
153
                        </div>
154
                    [% END # / IF confirm %]
154
                    [% END # / IF confirm %]
Lines 240-246 Link Here
240
240
241
                                <div>
241
                                <div>
242
                                    <form method="post" action="#" id="logout_form">
242
                                    <form method="post" action="#" id="logout_form">
243
                                        <button type="submit" class="btn"><i class="fa fa-check"></i> Finish</button>
243
                                        <button type="submit" class="btn"><i class="fa fa-check" aria-hidden="true"></i> Finish</button>
244
                                    </form>
244
                                    </form>
245
                                </div>
245
                                </div>
246
                            </div> <!-- / #newcheckout -->
246
                            </div> <!-- / #newcheckout -->
Lines 262-268 Link Here
262
                                <li>
262
                                <li>
263
                                    <a href="#holds-tab" data-toggle="tab">
263
                                    <a href="#holds-tab" data-toggle="tab">
264
                                        [% IF waiting_holds_count %]
264
                                        [% IF waiting_holds_count %]
265
                                            <i class="fa fa-exclamation"></i>
265
                                            <i class="fa fa-exclamation" aria-hidden="true"></i>
266
                                        [% END %]
266
                                        [% END %]
267
                                        Holds ([% HOLDS.count | html %])
267
                                        Holds ([% HOLDS.count | html %])
268
                                    </a>
268
                                    </a>
269
- 

Return to bug 25166