|
Lines 9-15
Link Here
|
| 9 |
<title>Koha › Circulation › Hold ratios</title> |
9 |
<title>Koha › Circulation › Hold ratios</title> |
| 10 |
[% INCLUDE 'doc-head-close.inc' %] |
10 |
[% INCLUDE 'doc-head-close.inc' %] |
| 11 |
[% Asset.css("css/datatables.css") | $raw %] |
11 |
[% Asset.css("css/datatables.css") | $raw %] |
| 12 |
<style type="text/css"> |
12 |
<style> |
| 13 |
.sql { display: none; } |
13 |
.sql { display: none; } |
| 14 |
.ulined { text-decoration: underline; } |
14 |
.ulined { text-decoration: underline; } |
| 15 |
.ratiolimit { color: blue; cursor: pointer; } |
15 |
.ratiolimit { color: blue; cursor: pointer; } |
|
Lines 23-32
Link Here
|
| 23 |
|
23 |
|
| 24 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › Hold ratios</div> |
24 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › Hold ratios</div> |
| 25 |
|
25 |
|
| 26 |
<div id="doc3" class="yui-t2"> |
26 |
<div class="main container-fluid"> |
| 27 |
<div id="bd"> |
27 |
<div class="row"> |
| 28 |
<div id="yui-main"> |
28 |
<div class="col-sm-10 col-sm-push-2"> |
| 29 |
<div class="yui-b"> |
29 |
<main> |
|
|
30 |
|
| 30 |
<h1>Hold ratios to calculate items needed</h1> |
31 |
<h1>Hold ratios to calculate items needed</h1> |
| 31 |
<h3>Calculated on [% todaysdate | $KohaDates %]. From [% from | $KohaDates %] |
32 |
<h3>Calculated on [% todaysdate | $KohaDates %]. From [% from | $KohaDates %] |
| 32 |
to [% to | $KohaDates %]</h3> |
33 |
to [% to | $KohaDates %]</h3> |
|
Lines 101-109
Link Here
|
| 101 |
[% ELSE %] |
102 |
[% ELSE %] |
| 102 |
<b>No items found.</b> |
103 |
<b>No items found.</b> |
| 103 |
[% END %] |
104 |
[% END %] |
| 104 |
</div> |
105 |
|
| 105 |
</div> |
106 |
</main> |
| 106 |
<div class="yui-b"> |
107 |
</div> <!-- /.col-sm-10.col-sm-push-2 --> |
|
|
108 |
|
| 109 |
<div class="col-sm-2 col-sm-pull-10"> |
| 110 |
<aside> |
| 111 |
|
| 107 |
<form action="/cgi-bin/koha/circ/reserveratios.pl" method="post" > |
112 |
<form action="/cgi-bin/koha/circ/reserveratios.pl" method="post" > |
| 108 |
<fieldset class="brief"> |
113 |
<fieldset class="brief"> |
| 109 |
<h4>Refine results:</h4> |
114 |
<h4>Refine results:</h4> |
|
Lines 142-154
Link Here
|
| 142 |
[% END %] |
147 |
[% END %] |
| 143 |
</form> |
148 |
</form> |
| 144 |
|
149 |
|
| 145 |
</div> |
150 |
</aside> |
| 146 |
</div> |
151 |
</div> <!-- /.col-sm-2.col-sm-pull-10 --> |
|
|
152 |
</div> <!-- /.row --> |
| 147 |
|
153 |
|
| 148 |
[% MACRO jsinclude BLOCK %] |
154 |
[% MACRO jsinclude BLOCK %] |
| 149 |
[% INCLUDE 'calendar.inc' %] |
155 |
[% INCLUDE 'calendar.inc' %] |
| 150 |
[% INCLUDE 'datatables.inc' %] |
156 |
[% INCLUDE 'datatables.inc' %] |
| 151 |
<script type="text/javascript"> |
157 |
<script> |
| 152 |
$(document).ready(function() { |
158 |
$(document).ready(function() { |
| 153 |
$(".ratiolimit").click(function () { |
159 |
$(".ratiolimit").click(function () { |
| 154 |
$("#ratio").val($(this).html()); |
160 |
$("#ratio").val($(this).html()); |
| 155 |
- |
|
|