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

(-)a/Koha/Template/Plugin/Borrowers.pm (-1 / +17 lines)
Lines 6-12 package Koha::Template::Plugin::Borrowers; Link Here
6
#
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
7
# Koha is free software; you can redistribute it and/or modify it under the
8
# terms of the GNU General Public License as published by the Free Software
8
# terms of the GNU General Public License as published by the Free Software
9
# Foundation; either version 2 of the License, or (at your option) any later
9
# Foundation; either version 3 of the License, or (at your option) any later
10
# version.
10
# version.
11
#
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
Lines 25-30 use Date::Calc qw/Today Add_Delta_YM check_date Date_to_Days/; Link Here
25
25
26
use C4::Koha;
26
use C4::Koha;
27
27
28
=pod
29
30
This plugin is a home for various patron related Template Toolkit functions
31
to help streamline Koha and to move logic from the Perl code into the
32
Templates when it makes sense to do so.
33
34
To use, first, include the line '[% USE Borrowers %]' at the top
35
of the template to enable the plugin.
36
37
For example: [% IF Borrowers.IsDebarred( borrower.borrowernumber ) %]
38
removes the necessity of setting a template variable in Perl code to
39
find out if a patron is restricted even if that variable is not evaluated
40
in any way in the script.
41
42
=cut
43
28
sub IsDebarred {
44
sub IsDebarred {
29
    my ( $self, $borrower ) = @_;
45
    my ( $self, $borrower ) = @_;
30
46
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-2 / +1 lines)
Lines 425-431 $(document).ready(function () { Link Here
425
                <div class="date-select" id="return_date_override_fields">
425
                <div class="date-select" id="return_date_override_fields">
426
                    <div class="hint">Specify return date [% INCLUDE 'date-format.inc' %]: </div>
426
                    <div class="hint">Specify return date [% INCLUDE 'date-format.inc' %]: </div>
427
427
428
                    <input type="text" size="13" id="return_date_override" name="return_date_override" value="[% return_date_override %]" readonly="readonly" />
428
                    <input type="text" size="13" id="return_date_override" name="return_date_override" value="[% return_date_override %]" />
429
429
430
                    <label for="return_date_override_remember"> Remember for next check in:</label>
430
                    <label for="return_date_override_remember"> Remember for next check in:</label>
431
                    [% IF ( return_date_override_remember ) %]
431
                    [% IF ( return_date_override_remember ) %]
432
- 

Return to bug 10694