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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-nav.inc (-1 / +1 lines)
Lines 41-47 Link Here
41
            [% END %]
41
            [% END %]
42
            [% IF Koha.Preference('OnSiteCheckouts') %]
42
            [% IF Koha.Preference('OnSiteCheckouts') %]
43
            <li>
43
            <li>
44
                <a href="/cgi-bin/koha/circ/on-site_checkouts.pl">Pending on-site checkouts</a>
44
                <a href="/cgi-bin/koha/circ/on-site_checkouts.pl">On-site checkouts</a>
45
            </li>
45
            </li>
46
            [% END %]
46
            [% END %]
47
        </ul>
47
        </ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt (-1 / +1 lines)
Lines 71-77 Link Here
71
                            [% END %]
71
                            [% END %]
72
                            [% IF Koha.Preference('OnSiteCheckouts') %]
72
                            [% IF Koha.Preference('OnSiteCheckouts') %]
73
                                <li>
73
                                <li>
74
                                    <a class="circ-button" href="/cgi-bin/koha/circ/on-site_checkouts.pl"><i class="fa-solid fa-location-dot"></i> Pending on-site checkouts</a>
74
                                    <a class="circ-button" href="/cgi-bin/koha/circ/on-site_checkouts.pl"><i class="fa-solid fa-location-dot"></i> On-site checkouts</a>
75
                                </li>
75
                                </li>
76
                            [% END %]
76
                            [% END %]
77
                        </ul>
77
                        </ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/on-site_checkouts.tt (-4 / +3 lines)
Lines 8-14 Link Here
8
[% SET footerjs = 1 %]
8
[% SET footerjs = 1 %]
9
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
10
<title>[% FILTER collapse %]
10
<title>[% FILTER collapse %]
11
    [% t("Pending on-site checkouts") | html %] &rsaquo;
11
    [% t("On-site checkouts") | html %] &rsaquo;
12
    [% t("Circulation") | html %] &rsaquo;
12
    [% t("Circulation") | html %] &rsaquo;
13
    [% t("Koha") | html %]
13
    [% t("Koha") | html %]
14
[% END %]</title>
14
[% END %]</title>
Lines 26-32 Link Here
26
            <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
26
            <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
27
        [% END %]
27
        [% END %]
28
        [% WRAPPER breadcrumb_item bc_active= 1 %]
28
        [% WRAPPER breadcrumb_item bc_active= 1 %]
29
            <span>Pending on-site checkouts</span>
29
            <span>On-site checkouts</span>
30
        [% END %]
30
        [% END %]
31
    [% END #/ WRAPPER breadcrumbs %]
31
    [% END #/ WRAPPER breadcrumbs %]
32
[% END #/ WRAPPER sub-header.inc %]
32
[% END #/ WRAPPER sub-header.inc %]
Lines 44-50 Link Here
44
                [% END %]
44
                [% END %]
45
                [% INCLUDE 'messages.inc' %]
45
                [% INCLUDE 'messages.inc' %]
46
46
47
        <h1>Pending on-site checkouts</h1>
47
        <h1>On-site checkouts</h1>
48
        [% IF pending_onsite_checkouts %]
48
        [% IF pending_onsite_checkouts %]
49
            <div class="page-section">
49
            <div class="page-section">
50
                <table id="pending_onsite_checkout">
50
                <table id="pending_onsite_checkout">
51
- 

Return to bug 37596