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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +2 lines)
Lines 977-983 Link Here
977
                                <ul class="list-unstyled">
977
                                <ul class="list-unstyled">
978
                                    [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
978
                                    [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
979
                                        <li>
979
                                        <li>
980
                                            <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% matching_request_for_patron.illrequest_id %]">ILL Request #[% matching_request_for_patron.illrequest_id %]</a>
980
                                            <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% matching_request_for_patron.illrequest_id | uri %]">ILL Request #[% matching_request_for_patron.illrequest_id | html %]</a>
981
                                        </li>
981
                                        </li>
982
                                    [% END %]
982
                                    [% END %]
983
                                </ul>
983
                                </ul>
Lines 989-995 Link Here
989
                                <ul class="list-unstyled">
989
                                <ul class="list-unstyled">
990
                                    [% FOREACH remaining_matching_request IN remaining_matching_requests %]
990
                                    [% FOREACH remaining_matching_request IN remaining_matching_requests %]
991
                                        <li>
991
                                        <li>
992
                                            <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% remaining_matching_request.illrequest_id %]">ILL Request #[% remaining_matching_request.illrequest_id %]</a> by [%- INCLUDE 'patron-title.inc' patron => remaining_matching_request.patron hide_patron_infos_if_needed => 1 -%]
992
                                            <a href="/cgi-bin/koha/ill/ill-requests.pl?op=illview&amp;illrequest_id=[% remaining_matching_request.illrequest_id | uri %]">ILL Request #[% remaining_matching_request.illrequest_id | html %]</a> by [%- INCLUDE 'patron-title.inc' patron => remaining_matching_request.patron hide_patron_infos_if_needed => 1 -%]
993
                                        </li>
993
                                        </li>
994
                                    [% END %]
994
                                    [% END %]
995
                                </ul>
995
                                </ul>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (-2 / +1 lines)
Lines 410-416 Link Here
410
                                        <ul class="list-unstyled">
410
                                        <ul class="list-unstyled">
411
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
411
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
412
                                                <li>
412
                                                <li>
413
                                                    <a href="/cgi-bin/koha/opac-illrequests.pl?op=view&amp;illrequest_id=[% matching_request_for_patron.illrequest_id %]">ILL Request #[% matching_request_for_patron.illrequest_id %]</a>
413
                                                    <a href="/cgi-bin/koha/opac-illrequests.pl?op=view&amp;illrequest_id=[% matching_request_for_patron.illrequest_id | uri %]">ILL Request #[% matching_request_for_patron.illrequest_id | html %]</a>
414
                                                </li>
414
                                                </li>
415
                                            [% END %]
415
                                            [% END %]
416
                                        </ul>
416
                                        </ul>
417
- 

Return to bug 38441