27770b7c8f
According to https://jquery.com/upgrade-guide/1.9/#attr-versus-prop- .attr() is no longer correct to access the checked state of a checkbox. This patch do the following replacements: .attr('checked') => .prop('checked') .attr('checked, '') => .prop('checked', false) .attr('checked, 'checked') => .prop('checked', true) .attr('checked', boolValue) => .prop('checked', boolValue) .removeAttr('checked') => .prop('checked', false) .attr('checked') == 'checked' => .is(':checked') Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
94 lines
3.6 KiB
Text
94 lines
3.6 KiB
Text
[% USE KohaDates %]
|
|
|
|
<h2>Prediction pattern</h1>
|
|
[% IF (not_consistent_end_date) %]
|
|
<p><em>End date is not consistent with subscription length.</em></p>
|
|
[% END %]
|
|
[% IF (ask_for_irregularities) %]
|
|
<p><em>Please check issues that are NOT published (irregularities)</em></p>
|
|
[% IF (daily_options) %]
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
function Check_boxes(dow) {
|
|
if($(":checkbox[data-dow='"+dow+"']:first").is(':checked')) {
|
|
$("#predictionst :checkbox[data-dow='"+dow+"']").each(function(){
|
|
$(this).prop('checked', true);
|
|
});
|
|
} else {
|
|
$("#predictionst :checkbox[data-dow='"+dow+"']").each(function(){
|
|
$(this).prop('checked', false);
|
|
});
|
|
}
|
|
}
|
|
//]]>
|
|
</script>
|
|
<p><em>
|
|
If there is a day (or more) in the week where issues are never
|
|
published, you can check corresponding boxes below.
|
|
</em></p>
|
|
<input type="checkbox" id="monday" data-dow="1" onchange="Check_boxes(1);" />
|
|
<label for="monday">Monday</label>
|
|
<input type="checkbox" id="tuesday" data-dow="2" onchange="Check_boxes(2);" />
|
|
<label for="tuesday">Tuesday</label>
|
|
<input type="checkbox" id="wednesday" data-dow="3" onchange="Check_boxes(3);" />
|
|
<label for="wednesday">Wednesday</label>
|
|
<input type="checkbox" id="thursday" data-dow="4" onchange="Check_boxes(4);" />
|
|
<label for="thursday">Thursday</label>
|
|
<input type="checkbox" id="friday" data-dow="5" onchange="Check_boxes(5);" />
|
|
<label for="friday">Friday</label>
|
|
<input type="checkbox" id="saturday" data-dow="6" onchange="Check_boxes(6);" />
|
|
<label for="saturday">Saturday</label>
|
|
<input type="checkbox" id="sunday" data-dow="7" onchange="Check_boxes(7);" />
|
|
<label for="sunday">Sunday</label>
|
|
[% END %]
|
|
[% END %]
|
|
[% IF (predictions_loop) %]
|
|
<table id="predictionst">
|
|
<thead>
|
|
<tr>
|
|
<th>Number</th>
|
|
<th>Publication date</th>
|
|
[% IF (ask_for_irregularities) %]
|
|
<th>Not published</th>
|
|
[% END %]
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH prediction IN predictions_loop %]
|
|
<tr>
|
|
<td>
|
|
[% IF ( matches = prediction.number.match('(.*)Spring(.*)') ) %]
|
|
[% matches.0 %]Spring[% matches.1 %]
|
|
[% ELSIF ( matches = prediction.number.match('(.*)Summer(.*)') ) %]
|
|
[% matches.0 %]Summer[% matches.1 %]
|
|
[% ELSIF ( matches = prediction.number.match('(.*)Fall(.*)') ) %]
|
|
[% matches.0 %]Fall[% matches.1 %]
|
|
[% ELSIF ( matches = prediction.number.match('(.*)Winter(.*)') ) %]
|
|
[% matches.0 %]Winter[% matches.1 %]
|
|
[% ELSE %]
|
|
[% prediction.number %]
|
|
[% END %]
|
|
</td>
|
|
<td>
|
|
[% IF (prediction.publicationdate) %]
|
|
[% prediction.publicationdate | $KohaDates %]
|
|
[% ELSE %]
|
|
unknown
|
|
[% END %]
|
|
</td>
|
|
[% IF (ask_for_irregularities) %]
|
|
<td style="text-align:center">
|
|
[% UNLESS (loop.first) %]
|
|
[% IF (prediction.not_published) %]
|
|
<input type="checkbox" name="irregularity" value="[% prediction.issuenumber %]" data-dow="[% prediction.dow %]" checked="checked" />
|
|
[% ELSE %]
|
|
<input type="checkbox" name="irregularity" value="[% prediction.issuenumber %]" data-dow="[% prediction.dow %]" />
|
|
[% END %]
|
|
</td>
|
|
[% END %]
|
|
[% END %]
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
[% END %]
|