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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-5 / +3 lines)
Lines 3-9 Link Here
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% USE Branches %]
4
[% USE Branches %]
5
[% USE Koha %]
5
[% USE Koha %]
6
[% USE Borrowers %]
7
[% USE ItemTypes %]
6
[% USE ItemTypes %]
8
[% USE AuthorisedValues %]
7
[% USE AuthorisedValues %]
9
[% USE ColumnsSettings %]
8
[% USE ColumnsSettings %]
Lines 182-192 Link Here
182
                            [% END %]
181
                            [% END %]
183
182
184
                            <!-- Patron is restricted and checkin was backdated -->
183
                            <!-- Patron is restricted and checkin was backdated -->
185
                            [% IF return_date_was_overriden && Borrowers.IsDebarred( borrower ) %]
184
                            [% IF return_date_was_overriden && issue.patron.is_debarred %]
186
                                <div id="restricted_backdated" class="dialog message">
185
                                <div id="restricted_backdated" class="dialog message">
187
                                    <h3>
186
                                    <h3>
188
                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">
187
                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issue.patron.borrowernumber | uri %]">
189
                                            [% patron.firstname | html %] [% patron.surname | html %]
188
                                            [% issue.patron.firstname | html %] [% issue.patron.surname | html %]
190
                                        </a>
189
                                        </a>
191
                                        is restricted. Please verify this patron should still be restricted.
190
                                        is restricted. Please verify this patron should still be restricted.
192
                                    </h3>
191
                                    </h3>
193
- 

Return to bug 24776