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 913-919 Link Here
913
                            <ul class="list-unstyled">
913
                            <ul class="list-unstyled">
914
                                [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
914
                                [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
915
                                    <li>
915
                                    <li>
916
                                        <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>
916
                                        <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 | html %]</a>
917
                                    </li>
917
                                    </li>
918
                                [% END %]
918
                                [% END %]
919
                            </ul>
919
                            </ul>
Lines 925-931 Link Here
925
                            <ul class="list-unstyled">
925
                            <ul class="list-unstyled">
926
                                [% FOREACH remaining_matching_request IN remaining_matching_requests %]
926
                                [% FOREACH remaining_matching_request IN remaining_matching_requests %]
927
                                    <li>
927
                                    <li>
928
                                        <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 -%]
928
                                        <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 | html %]</a> by [%- INCLUDE 'patron-title.inc' patron => remaining_matching_request.patron hide_patron_infos_if_needed => 1 -%]
929
                                    </li>
929
                                    </li>
930
                                [% END %]
930
                                [% END %]
931
                            </ul>
931
                            </ul>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (-2 / +3 lines)
Lines 334-340 Link Here
334
                                        <ul class="list-unstyled">
334
                                        <ul class="list-unstyled">
335
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
335
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
336
                                                <li>
336
                                                <li>
337
                                                    <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>
337
                                                    <a href="/cgi-bin/koha/opac-illrequests.pl?op=view&amp;illrequest_id=[% matching_request_for_patron.illrequest_id | uri %]"
338
                                                        >ILL Request #[% matching_request_for_patron.illrequest_id | html %]</a
339
                                                    >
338
                                                </li>
340
                                                </li>
339
                                            [% END %]
341
                                            [% END %]
340
                                        </ul>
342
                                        </ul>
341
- 

Return to bug 38441