|
Lines 16-46
Link Here
|
| 16 |
</head> |
16 |
</head> |
| 17 |
|
17 |
|
| 18 |
<body id="circ_pendingbookings" class="circ"> |
18 |
<body id="circ_pendingbookings" class="circ"> |
| 19 |
[% INCLUDE 'header.inc' %] |
19 |
[% WRAPPER 'header.inc' %] |
| 20 |
[% INCLUDE 'circ-search.inc' %] |
20 |
[% INCLUDE 'circ-search.inc' %] |
|
|
21 |
[% END %] |
| 21 |
|
22 |
|
| 22 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
23 |
[% WRAPPER 'sub-header.inc' %] |
| 23 |
<ol> |
24 |
[% WRAPPER breadcrumbs %] |
| 24 |
<li> |
25 |
[% WRAPPER breadcrumb_item %] |
| 25 |
<a href="/cgi-bin/koha/mainpage.pl">Home</a> |
26 |
<a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> |
| 26 |
</li> |
27 |
[% END %] |
| 27 |
<li> |
28 |
[% WRAPPER breadcrumb_item bc_active= 1 %] |
| 28 |
<a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> |
29 |
<span>Bookings to collect</span> |
| 29 |
</li> |
30 |
[% END %] |
| 30 |
<li> |
31 |
[% END #/ WRAPPER breadcrumbs %] |
| 31 |
<a href="#" aria-current="page"> |
32 |
[% END #/ WRAPPER sub-header.inc %] |
| 32 |
Bookings to collect |
|
|
| 33 |
</a> |
| 34 |
</li> |
| 35 |
</ol> |
| 36 |
</nav> |
| 37 |
|
33 |
|
| 38 |
<div class="main container-fluid"> |
34 |
<div class="main container-fluid"> |
| 39 |
<div class="row"> |
35 |
<div class="row"> |
| 40 |
|
36 |
|
| 41 |
<!-- Results --> |
37 |
<!-- Results --> |
| 42 |
<div class="col-sm-10 col-sm-push-2"> |
38 |
<div class="col-md-10 order-md-2 order-sm1"> |
| 43 |
<main> |
39 |
<main> |
|
|
40 |
[% INCLUDE 'messages.inc' %] |
| 44 |
<h1>Items required for bookings between <span id="from_date">[% from | $KohaDates %]</span> and <span id="to_date">[% to | $KohaDates %]</span></h1> |
41 |
<h1>Items required for bookings between <span id="from_date">[% from | $KohaDates %]</span> and <span id="to_date">[% to | $KohaDates %]</span></h1> |
| 45 |
<h2>Reported on [% todaysdate | $KohaDates %]</h2> |
42 |
<h2>Reported on [% todaysdate | $KohaDates %]</h2> |
| 46 |
<p>The following items have not been collected for bookings. Please retrieve them |
43 |
<p>The following items have not been collected for bookings. Please retrieve them |
|
Lines 52-58
Link Here
|
| 52 |
</div> |
49 |
</div> |
| 53 |
|
50 |
|
| 54 |
<!-- Filters & Navigation --> |
51 |
<!-- Filters & Navigation --> |
| 55 |
<div class="col-sm-2 col-sm-pull-10"> |
52 |
<div class="col-md-2 order-sm-2 order-md-1"> |
| 56 |
<aside> |
53 |
<aside> |
| 57 |
<div id="filters"> |
54 |
<div id="filters"> |
| 58 |
<form id="bookingsf"> |
55 |
<form id="bookingsf"> |
|
Lines 60-66
Link Here
|
| 60 |
<h4>Refine results</h4> |
57 |
<h4>Refine results</h4> |
| 61 |
<ol> |
58 |
<ol> |
| 62 |
<li> |
59 |
<li> |
| 63 |
<label for="library">Library:</label> |
60 |
<label for="library">Holding library:</label> |
| 64 |
<select name="library" id="library"> |
61 |
<select name="library" id="library"> |
| 65 |
[% SET libraries = Branches.all( only_from_group => 1 ) %] |
62 |
[% SET libraries = Branches.all( only_from_group => 1 ) %] |
| 66 |
[% IF libraries.size != 1 %] |
63 |
[% IF libraries.size != 1 %] |
|
Lines 76-86
Link Here
|
| 76 |
</select> |
73 |
</select> |
| 77 |
</li> |
74 |
</li> |
| 78 |
<li> |
75 |
<li> |
| 79 |
<label for="from">Start date: </label> |
76 |
<label for="from">Starts after: </label> |
| 80 |
<input type="text" size="10" id="from" name="from" value="[% from | html %]" class="flatpickr" data-date_to="to"/> |
77 |
<input type="text" size="10" id="from" name="from" value="[% from | html %]" class="flatpickr" data-date_to="to"/> |
| 81 |
</li> |
78 |
</li> |
| 82 |
<li> |
79 |
<li> |
| 83 |
<label for="to">End date: </label> |
80 |
<label for="to">Starts before: </label> |
| 84 |
<input type="text" size="10" id="to" name="to" value="[% to | html %]" class="flatpickr"/> |
81 |
<input type="text" size="10" id="to" name="to" value="[% to | html %]" class="flatpickr"/> |
| 85 |
</li> |
82 |
</li> |
| 86 |
</ol> |
83 |
</ol> |
| 87 |
- |
|
|