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

(-)a/circ/branchoverdues.pl (+4 lines)
Lines 156-159 $template->param( Link Here
156
    location     => $location,
156
    location     => $location,
157
);
157
);
158
158
159
# Checking if there is a Fast Cataloging Framework
160
my $fa = getframeworkinfo('FA');
161
$template->param( fast_cataloging => 1 ) if (defined $fa);
162
159
output_html_with_http_headers $input, $cookie, $template->output;
163
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/circ/renew.pl (+5 lines)
Lines 26-31 use C4::Output; Link Here
26
use C4::Circulation;
26
use C4::Circulation;
27
use Koha::DateUtils;
27
use Koha::DateUtils;
28
use Koha::Database;
28
use Koha::Database;
29
use C4::Koha;
29
30
30
my $cgi = new CGI;
31
my $cgi = new CGI;
31
32
Lines 109-112 if ($barcode) { Link Here
109
    );
110
    );
110
}
111
}
111
112
113
# Checking if there is a Fast Cataloging Framework
114
my $fa = getframeworkinfo('FA');
115
$template->param( fast_cataloging => 1 ) if (defined $fa);
116
112
output_html_with_http_headers( $cgi, $cookie, $template->output );
117
output_html_with_http_headers( $cgi, $cookie, $template->output );
(-)a/circ/returns.pl (+4 lines)
Lines 657-661 if ( $itemnumber ) { Link Here
657
    }
657
    }
658
}
658
}
659
659
660
# Checking if there is a Fast Cataloging Framework
661
my $fa = getframeworkinfo('FA');
662
$template->param( fast_cataloging => 1 ) if (defined $fa);
663
660
# actually print the page!
664
# actually print the page!
661
output_html_with_http_headers $query, $cookie, $template->output;
665
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/circ/selectbranchprinter.pl (+4 lines)
Lines 138-141 $template->param( Link Here
138
    recycle_loop=> \@recycle_loop,
138
    recycle_loop=> \@recycle_loop,
139
);
139
);
140
140
141
# Checking if there is a Fast Cataloging Framework
142
my $fa = getframeworkinfo('FA');
143
$template->param( fast_cataloging => 1 ) if (defined $fa);
144
141
output_html_with_http_headers $query, $cookie, $template->output;
145
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/circ/transferstoreceive.pl (+4 lines)
Lines 124-128 $template->param( Link Here
124
	latetransfers => $latetransfers ? 1 : 0,
124
	latetransfers => $latetransfers ? 1 : 0,
125
);
125
);
126
126
127
# Checking if there is a Fast Cataloging Framework
128
my $fa = getframeworkinfo('FA');
129
$template->param( fast_cataloging => 1 ) if (defined $fa);
130
127
output_html_with_http_headers $input, $cookie, $template->output;
131
output_html_with_http_headers $input, $cookie, $template->output;
128
132
(-)a/circ/view_holdsqueue.pl (+4 lines)
Lines 76-80 $template->param( Link Here
76
   itemtypeloop => \@itemtypesloop,
76
   itemtypeloop => \@itemtypesloop,
77
);
77
);
78
78
79
# Checking if there is a Fast Cataloging Framework
80
my $fa = getframeworkinfo('FA');
81
$template->param( fast_cataloging => 1 ) if (defined $fa);
82
79
# writing the template
83
# writing the template
80
output_html_with_http_headers $query, $cookie, $template->output;
84
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/circ/waitingreserves.pl (+4 lines)
Lines 164-169 $template->param( Link Here
164
    ReservesMaxPickUpDelay => $max_pickup_delay,
164
    ReservesMaxPickUpDelay => $max_pickup_delay,
165
);
165
);
166
166
167
# Checking if there is a Fast Cataloging Framework
168
my $fa = getframeworkinfo('FA');
169
$template->param( fast_cataloging => 1 ) if (defined $fa);
170
167
if ($item && $tab eq 'holdsover') {
171
if ($item && $tab eq 'holdsover') {
168
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
172
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
169
} elsif ($cancelall) {
173
} elsif ($cancelall) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-nav.inc (+54 lines)
Line 0 Link Here
1
<script type="text/javascript">//<![CDATA[
2
    $(document).ready(function() {
3
        var path = location.pathname.substring(1);
4
        var url = window.location.toString();
5
        var params = '';
6
        if ( url.match(/\?(.+)$/) ) {
7
            params = "?" + RegExp.$1;
8
        }
9
        $('#navmenulist a[href$="/' + path + params + '"]').css('font-weight','bold');
10
    });
11
//]]>
12
</script>
13
14
<div id="navmenu">
15
    <div id="navmenulist">
16
17
        <ul>
18
            <li><a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation home</a></li>
19
        </ul>
20
21
        <h5>Circulation</h5>
22
        <ul>
23
            <li><a href="/cgi-bin/koha/circ/circulation.pl">Check out</a></li>
24
            <li><a href="/cgi-bin/koha/circ/returns.pl">Check in</a></li>
25
            <li><a href="/cgi-bin/koha/circ/renew.pl">Renew</a></li>
26
            [% IF ( display_transfer ) %]
27
                <li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfer</a></li>
28
            [% END %]
29
            [% IF ( AutoLocation ) %][% ELSE %][% IF ( IndependentBranches ) %][% ELSE %]
30
                <li><a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a></li>
31
            [% END %][% END %]
32
            [% IF ( fast_cataloging ) %][% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
33
                <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
34
            [% END %][% END %]
35
        </ul>
36
37
        <h5>Circulation reports</h5>
38
        <ul>
39
            <li><a href="/cgi-bin/koha/circ/view_holdsqueue.pl">Holds queue</a></li>
40
            <li><a href="/cgi-bin/koha/circ/pendingreserves.pl">Holds to pull</a></li>
41
            <li><a href="/cgi-bin/koha/circ/waitingreserves.pl">Holds awaiting pickup</a></li>
42
            <li><a href="/cgi-bin/koha/circ/reserveratios.pl">Hold ratios</a></li>
43
            <li><a href="/cgi-bin/koha/circ/transferstoreceive.pl">Transfers to receive</a></li>
44
            [% IF ( CAN_user_circulate_overdues_report ) %]
45
                <li><a href="/cgi-bin/koha/circ/overdue.pl">Overdues</a></li>
46
            [% END %]
47
            <li><a href="/cgi-bin/koha/circ/branchoverdues.pl">Overdues with fines</a></li>
48
            [% IF Koha.Preference('OnSiteCheckouts') %]
49
                <li><a href="/cgi-bin/koha/circ/on-site_checkouts.pl">Pending on-site checkouts</a></li>
50
            [% END %]
51
        </ul>
52
53
    </div>
54
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tt (-1 / +6 lines)
Lines 8-17 Link Here
8
8
9
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Overdues at [% LoginBranchname %]</div>
9
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Overdues at [% LoginBranchname %]</div>
10
10
11
<div id="doc" class="yui-t7">
11
<div id="doc3" class="yui-t2">
12
12
13
   <div id="bd">
13
   <div id="bd">
14
	<div id="yui-main">
14
	<div id="yui-main">
15
        <div class="yui-b">
15
	<div class="yui-g">
16
	<div class="yui-g">
16
17
17
18
Lines 163-166 Link Here
163
</div>
164
</div>
164
</div>
165
</div>
165
</div>
166
</div>
167
<div class="yui-b noprint">
168
    [% INCLUDE 'circ-nav.inc' %]
169
</div>
170
</div>
166
[% INCLUDE 'intranet-bottom.inc' %]
171
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-4 / +14 lines)
Lines 962-973 No patron matched <span class="ex">[% message %]</span> Link Here
962
[% END %] <!-- borrowernumber and borrower-->
962
[% END %] <!-- borrowernumber and borrower-->
963
</div></div>
963
</div></div>
964
[% END %]
964
[% END %]
965
965
[% UNLESS ( borrowers ) %]
966
    [% IF not( borrowernumber and borrower ) %]
967
        <div class="yui-b noprint">
968
            [% INCLUDE 'circ-nav.inc' %]
969
        </div>
970
    [% END %]
971
[% END %]
966
</div>
972
</div>
967
</div>
973
</div>
968
[% UNLESS ( borrowers ) %][% IF borrowernumber and borrower %]<div class="yui-b">
974
[% UNLESS ( borrowers ) %]
969
[% INCLUDE 'circ-menu.inc' %]
975
    [% IF borrowernumber and borrower %]
970
</div>[% END %][% END %]
976
        <div class="yui-b">
977
            [% INCLUDE 'circ-menu.inc' %]
978
        </div>
979
    [% END %]
980
[% END %]
971
</div>
981
</div>
972
<!-- Modal -->
982
<!-- Modal -->
973
<div id="barcodeSubmittedModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="barcodeSubmittedModalLabel" aria-hidden="true">
983
<div id="barcodeSubmittedModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="barcodeSubmittedModalLabel" aria-hidden="true">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/renew.tt (-4 / +8 lines)
Lines 26-34 Link Here
26
26
27
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Renew</div>
27
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Renew</div>
28
28
29
<div id="doc" class="yui-t7">
29
<div id="doc3" class="yui-t2">
30
    <div id="bd">
30
    <div id="bd">
31
31
        <div id="yui-main">
32
            <div class="yui-b">
32
                [% IF error %]
33
                [% IF error %]
33
                    <div class="dialog alert">
34
                    <div class="dialog alert">
34
                        <h3>Cannot renew:</h3>
35
                        <h3>Cannot renew:</h3>
Lines 128-134 Link Here
128
                        </p>
129
                        </p>
129
                    </div>
130
                    </div>
130
                [% END %]
131
                [% END %]
131
            </div>
132
132
133
            <div class="yui-g">
133
            <div class="yui-g">
134
134
Lines 151-158 Link Here
151
            [% END %]
151
            [% END %]
152
152
153
        </div>
153
        </div>
154
155
    </div>
154
    </div>
155
</div>
156
157
<div class="yui-b noprint">
158
    [% INCLUDE 'circ-nav.inc' %]
159
</div>
156
160
157
<div>
161
<div>
158
162
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-63 / +66 lines)
Lines 140-150 $(document).ready(function () { Link Here
140
140
141
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Check in</div>
141
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Check in</div>
142
142
143
<div id="doc" class="yui-t7">
143
<div id="doc3" class="yui-t2">
144
145
   <div id="bd">
146
	<div id="yui-main">
147
144
145
<div id="bd">
146
<div id="yui-main">
147
<div class="yui-b">
148
<div class="yui-g">
148
<div class="yui-g">
149
149
150
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %]
150
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %]
Lines 461-526 $(document).ready(function () { Link Here
461
            <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
461
            <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
462
        [% END %]
462
        [% END %]
463
        [% FOREACH errmsgloo IN errmsgloop %]
463
        [% FOREACH errmsgloo IN errmsgloop %]
464
                    [% IF ( errmsgloo.NotForLoanStatusUpdated ) %]
464
            [% IF ( errmsgloo.NotForLoanStatusUpdated ) %]
465
                        <p class="problem">
465
                <p class="problem">
466
                            Not for loan status updated.
466
                    Not for loan status updated.
467
                            <br />Old value:
467
                    <br />Old value:
468
                            [% IF errmsgloo.NotForLoanStatusUpdated.from %]
468
                    [% IF errmsgloo.NotForLoanStatusUpdated.from %]
469
                                [% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.from ) %].
469
                        [% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.from ) %].
470
                            [% ELSE %]
470
                    [% ELSE %]
471
                                Available for loan.
471
                        Available for loan.
472
                            [% END %]
473
                            <br />New value:
474
                            [% IF errmsgloo.NotForLoanStatusUpdated.to %]
475
                                [% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.to ) %].
476
                            [% ELSE %]
477
                                Available for loan.
478
                            [% END %]
479
                        </p>
480
                    [% END %]
481
                    [% IF ( errmsgloo.badbarcode ) %]
482
                        <p class="problem">No item with barcode: [% errmsgloo.msg %]</p>
483
                    [% END %]
484
                    [% IF ( errmsgloo.ispermanent ) %]
485
                        <p class="problem">Please return item to: [% errmsgloo.msg %]</p>
486
                    [% END %]
487
                    [% IF ( errmsgloo.notissued ) %]
488
                        <p class="problem">Not checked out.</p>
489
                    [% END %]
490
                    [% IF ( errmsgloo.localuse) %]
491
                        <p class="problem">Local use recorded</p>
492
                    [% END %]
493
                    [% IF ( errmsgloo.waslost ) %]
494
                        <p class="problem">Item was lost, now found.</p>
495
                        [% IF ( LostItemFeeRefunded ) %]
496
                            <p class="problem">A refund has been applied to the borrowing patron's account.</p>
497
                        [% ELSE %]
498
                            <p class="problem">Any lost item fees for this item will remain on the patron's account.</p>
499
                        [% END %]
500
                    [% END %]
501
                    [% IF ( errmsgloo.withdrawn ) %]
502
                        [% IF BlockReturnOfWithdrawnItems %]
503
                           <h5>Cannot check in</h5>
504
                           <p><strong>NOT CHECKED IN</strong></p>
505
                           <p class="problem">Item is withdrawn.</p>
506
                        [% ELSE %]
507
                           <p class="problem">Item is withdrawn.</p>
508
                        [% END %]
509
                    [% END %]
510
                    [% IF ( errmsgloo.debarred ) %]
511
                        <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber %]">[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p>
512
                    [% END %]
513
                    [% IF ( errmsgloo.prevdebarred ) %]
514
                        <p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p>
515
                    [% END %]
472
                    [% END %]
516
                    [% IF ( errmsgloo.foreverdebarred ) %]
473
                    <br />New value:
517
                        <p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p>
474
                    [% IF errmsgloo.NotForLoanStatusUpdated.to %]
475
                        [% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.to ) %].
476
                    [% ELSE %]
477
                        Available for loan.
518
                    [% END %]
478
                    [% END %]
519
479
                </p>
480
            [% END %]
481
            [% IF ( errmsgloo.badbarcode ) %]
482
                <p class="problem">No item with barcode: [% errmsgloo.msg %]</p>
483
            [% END %]
484
            [% IF ( errmsgloo.ispermanent ) %]
485
                <p class="problem">Please return item to: [% errmsgloo.msg %]</p>
486
            [% END %]
487
            [% IF ( errmsgloo.notissued ) %]
488
                <p class="problem">Not checked out.</p>
489
            [% END %]
490
            [% IF ( errmsgloo.localuse) %]
491
                <p class="problem">Local use recorded</p>
492
            [% END %]
493
            [% IF ( errmsgloo.waslost ) %]
494
                <p class="problem">Item was lost, now found.</p>
495
                [% IF ( LostItemFeeRefunded ) %]
496
                    <p class="problem">A refund has been applied to the borrowing patron's account.</p>
497
                [% ELSE %]
498
                    <p class="problem">Any lost item fees for this item will remain on the patron's account.</p>
499
                [% END %]
500
            [% END %]
501
            [% IF ( errmsgloo.withdrawn ) %]
502
                [% IF BlockReturnOfWithdrawnItems %]
503
                    <h5>Cannot check in</h5>
504
                    <p><strong>NOT CHECKED IN</strong></p>
505
                    <p class="problem">Item is withdrawn.</p>
506
                [% ELSE %]
507
                    <p class="problem">Item is withdrawn.</p>
508
                [% END %]
509
            [% END %]
510
            [% IF ( errmsgloo.debarred ) %]
511
                <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber %]">[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p>
512
            [% END %]
513
            [% IF ( errmsgloo.prevdebarred ) %]
514
                <p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p>
515
            [% END %]
516
            [% IF ( errmsgloo.foreverdebarred ) %]
517
                <p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p>
520
            [% END %]
518
            [% END %]
521
        [% ELSE %]
522
        [% END %]
519
        [% END %]
523
    </div>
520
    </div>
521
[% END %]
524
522
525
[% IF ( checkinmsg ) %]
523
[% IF ( checkinmsg ) %]
526
    [% IF ( checkinmsgtype == 'alert' ) %]
524
    [% IF ( checkinmsgtype == 'alert' ) %]
Lines 542-548 $(document).ready(function () { Link Here
542
        <p>Book drop mode.  (Effective checkin date is [% dropboxdate %] ).</p>
540
        <p>Book drop mode.  (Effective checkin date is [% dropboxdate %] ).</p>
543
    </div>
541
    </div>
544
</div>
542
</div>
545
	<div class="yui-g">
543
<div class="yui-g">
546
    <form id="checkin-form" method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" >
544
    <form id="checkin-form" method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" >
547
    <div class="yui-u first">
545
    <div class="yui-u first">
548
            <fieldset>
546
            <fieldset>
Lines 655-663 $(document).ready(function () { Link Here
655
            </td>
653
            </td>
656
           </tr>
654
           </tr>
657
        [% END %]
655
        [% END %]
658
    </table></div>
656
    </table>
659
[% END %]
657
[% END %]
660
658
</div>
661
659
</div>
660
<div class="yui-b noprint">
661
    [% INCLUDE 'circ-nav.inc' %]
662
</div>
663
</div>
664
</div>
662
</div>
665
</div>
663
[% INCLUDE 'intranet-bottom.inc' %]
666
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/selectbranchprinter.tt (-2 / +5 lines)
Lines 15-21 Link Here
15
&rsaquo; <a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
15
&rsaquo; <a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
16
</div>
16
</div>
17
17
18
<div id="doc" class="yui-t7">
18
<div id="doc3" class="yui-t2">
19
  <div id="bd">
19
  <div id="bd">
20
    <div id="yui-main">
20
    <div id="yui-main">
21
      <div class="yui-b">
21
      <div class="yui-b">
Lines 94-98 Updated:<ul> Link Here
94
94
95
      </div>
95
      </div>
96
    </div>
96
    </div>
97
  </div>
97
<div class="yui-b noprint">
98
    [% INCLUDE 'circ-nav.inc' %]
99
</div>
100
</div>
98
[% INCLUDE 'intranet-bottom.inc' %]
101
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt (-1 / +6 lines)
Lines 29-38 $(document).ready(function() { Link Here
29
29
30
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>  &rsaquo; Transfers to your library</div>
30
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>  &rsaquo; Transfers to your library</div>
31
31
32
<div id="doc" class="yui-t7">
32
<div id="doc3" class="yui-t2">
33
33
34
   <div id="bd">
34
   <div id="bd">
35
	<div id="yui-main">
35
	<div id="yui-main">
36
        <div class="yui-b">
36
	<div class="yui-g">
37
	<div class="yui-g">
37
38
38
	<h1>Transfers made to your library as of [% show_date %]</h1>
39
	<h1>Transfers made to your library as of [% show_date %]</h1>
Lines 96-99 $(document).ready(function() { Link Here
96
</div>
97
</div>
97
</div>
98
</div>
98
</div>
99
</div>
100
<div class="yui-b noprint">
101
    [% INCLUDE 'circ-nav.inc' %]
102
</div>
103
</div>
99
[% INCLUDE 'intranet-bottom.inc' %]
104
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-1 / +6 lines)
Lines 52-61 $(document).ready(function() { Link Here
52
[% IF ( run_report ) %] &rsaquo; Results[% END %]
52
[% IF ( run_report ) %] &rsaquo; Results[% END %]
53
</div>
53
</div>
54
54
55
<div id="doc2" class="yui-t7">
55
<div id="doc3" class="yui-t2">
56
56
57
   <div id="bd">
57
   <div id="bd">
58
	<div id="yui-main">
58
	<div id="yui-main">
59
        <div class="yui-b">
59
	<div class="yui-g">
60
	<div class="yui-g">
60
61
61
<h1>Holds queue</h1>
62
<h1>Holds queue</h1>
Lines 221-224 $(document).ready(function() { Link Here
221
</div>
222
</div>
222
</div>
223
</div>
223
</div>
224
</div>
225
<div class="yui-b noprint">
226
    [% INCLUDE 'circ-nav.inc' %]
227
</div>
228
</div>
224
[% INCLUDE 'intranet-bottom.inc' %]
229
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-1 / +6 lines)
Lines 31-40 Link Here
31
&rsaquo; <a href="/cgi-bin/koha/circ/waitingreserves.pl">Holds awaiting pickup</a>
31
&rsaquo; <a href="/cgi-bin/koha/circ/waitingreserves.pl">Holds awaiting pickup</a>
32
</div>
32
</div>
33
33
34
<div id="doc3" class="yui-t7">
34
<div id="doc3" class="yui-t2">
35
35
36
   <div id="bd">
36
   <div id="bd">
37
    <div id="yui-main">
37
    <div id="yui-main">
38
    <div class="yui-b">
38
    <div class="yui-g">
39
    <div class="yui-g">
39
40
40
        <h2>Holds awaiting pickup for your library on: [% show_date %]
41
        <h2>Holds awaiting pickup for your library on: [% show_date %]
Lines 194-197 Link Here
194
</div>
195
</div>
195
</div>
196
</div>
196
</div>
197
</div>
198
<div class="yui-b noprint">
199
    [% INCLUDE 'circ-nav.inc' %]
200
</div>
201
</div>
197
[% INCLUDE 'intranet-bottom.inc' %]
202
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt (-3 / +11 lines)
Lines 59-67 Link Here
59
59
60
    <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Offline circulation</div>
60
    <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Offline circulation</div>
61
61
62
    <div id="doc" class="yui-t7">
62
    <div id="doc3" class="yui-t2">
63
63
64
	    <div id="bd">
64
    <div id="bd">
65
      <div id="yui-main">
66
        <div class="yui-b">
65
67
66
        <h2>Offline circulation</h2>
68
        <h2>Offline circulation</h2>
67
69
Lines 132-137 Link Here
132
134
133
        [% END %]
135
        [% END %]
134
136
135
    </div>
137
    </div></div>
138
139
<div class="yui-b noprint">
140
    [% INCLUDE 'circ-nav.inc' %]
141
</div>
142
143
</div>
136
144
137
    [% INCLUDE 'intranet-bottom.inc' %]
145
    [% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/process_koc.tt (-4 / +8 lines)
Lines 77-85 function CheckForm(f) { Link Here
77
77
78
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; [% IF ( transactions_loaded ) %] <a href="/cgi-bin/koha/offline_circ/process_koc.pl">Offline circulation file upload</a> &rsaquo; Results[% ELSE %] Offline circulation file upload[% END %]</div>
78
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; [% IF ( transactions_loaded ) %] <a href="/cgi-bin/koha/offline_circ/process_koc.pl">Offline circulation file upload</a> &rsaquo; Results[% ELSE %] Offline circulation file upload[% END %]</div>
79
79
80
<div id="doc" class="yui-t7">
80
<div id="doc3" class="yui-t2">
81
81
82
   <div id="bd">
82
   <div id="bd">
83
     <div id="yui-main">
84
       <div class="yui-b">
83
85
84
[% IF ( transactions_loaded ) %]
86
[% IF ( transactions_loaded ) %]
85
  <h2>Koha offline circulation</h2>
87
  <h2>Koha offline circulation</h2>
Lines 127-133 function CheckForm(f) { Link Here
127
     <div id="jobfailed" style="display:none"></div>
129
     <div id="jobfailed" style="display:none"></div>
128
   </form>
130
   </form>
129
[% END %]
131
[% END %]
130
132
</div>
131
133
</div>
134
<div class="yui-b noprint">
135
    [% INCLUDE 'circ-nav.inc' %]
136
</div>
132
</div>
137
</div>
133
[% INCLUDE 'intranet-bottom.inc' %]
138
[% INCLUDE 'intranet-bottom.inc' %]
134
- 

Return to bug 16530