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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-nav.inc (-1 / +1 lines)
Lines 21-27 Link Here
21
                <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
21
                <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
22
            [% END %][% END %]
22
            [% END %][% END %]
23
            [% IF Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes %]
23
            [% IF Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes %]
24
                <li><a href="/cgi-bin/koha/circ/checkout-notes.pl">Checkout notes</a> [% IF pending_checkout_notes.count %]<span class="number_box"><a href="/cgi-bin/koha/circ/checkout-notes.pl">[% pending_checkout_notes.count | html %]</span>[% END %]</li>
24
                <li><a href="/cgi-bin/koha/circ/checkout-notes.pl">Checkout notes</a> [% IF pending_checkout_notes.count %]<span class="number_box"><a href="/cgi-bin/koha/circ/checkout-notes.pl">[% pending_checkout_notes.count | html %]</a></span>[% END %]</li>
25
            [% END %]
25
            [% END %]
26
        </ul>
26
        </ul>
27
27
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt (-20 / +25 lines)
Lines 20-33 Link Here
20
    Checkout notes
20
    Checkout notes
21
</div>
21
</div>
22
22
23
[% IF Koha.Preference('CircSidebar') %]
23
<div class="main container-fluid">
24
    <div id="doc3" class="yui-t2">
24
    <div class="row">
25
[% ELSE %]
25
        <div class="col-sm-12">
26
    <div id="doc" class="yui-t7">
26
            <main>
27
[% END %]
27
                <div class="row">
28
    <div id="bd">
28
29
        <div id="yui-main">
29
                [% IF Koha.Preference('CircSidebar') %]
30
        [% IF Koha.Preference('CircSidebar') %]<div class="yui-b">[% END %]
30
                    <div class="col-sm-10 col-sm-push-2">
31
                [% ELSE %]
32
                    <div class="col-md-12 col-lg-10 col-lg-offset-1">
33
                [% END %]
31
34
32
            <h1>Checkout notes</h1>
35
            <h1>Checkout notes</h1>
33
36
Lines 104-121 Link Here
104
                <div class="dialog message">There are currently no checkout notes.</div>
107
                <div class="dialog message">There are currently no checkout notes.</div>
105
            [% END %] <!-- notes -->
108
            [% END %] <!-- notes -->
106
109
107
        </div> <!-- yui-main -->
110
                    [% IF Koha.Preference('CircSidebar') %]
108
111
                        </div> <!-- /.col-sm-10.col-sm-push-2 -->
109
        [% IF Koha.Preference('CircSidebar') %]
112
                        <div class="col-sm-2 col-sm-pull-10">
110
        </div>
113
                            <aside>
111
114
                                [% INCLUDE 'circ-nav.inc' %]
112
        <div class="yui-b noprint">
115
                            </aside>
113
            [% INCLUDE 'circ-nav.inc' %]
116
                        </div> <!-- /.col-sm-2.col-sm-pull-10 -->
114
        </div>
117
                    [% ELSE %]
115
        [% END %]
118
                        </div> <!-- .col-md-12.col-lg-10.col-lg-offset-1 -->
119
                    [% END %]
116
120
117
    </div> <!-- bd -->
121
                </div> <!-- /.row -->
118
</div> <!-- doc3 -->
122
            </main>
123
        </div> <!-- /.col-sm-12 -->
124
    </div> <!-- /.row -->
119
125
120
[% MACRO jsinclude BLOCK %]
126
[% MACRO jsinclude BLOCK %]
121
    [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
127
    [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
122
- 

Return to bug 21693