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 927-933 Link Here
927
                            <ul class="list-unstyled">
927
                            <ul class="list-unstyled">
928
                                [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
928
                                [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
929
                                    <li>
929
                                    <li>
930
                                        <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>
930
                                        <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>
931
                                    </li>
931
                                    </li>
932
                                [% END %]
932
                                [% END %]
933
                            </ul>
933
                            </ul>
Lines 939-945 Link Here
939
                            <ul class="list-unstyled">
939
                            <ul class="list-unstyled">
940
                                [% FOREACH remaining_matching_request IN remaining_matching_requests %]
940
                                [% FOREACH remaining_matching_request IN remaining_matching_requests %]
941
                                    <li>
941
                                    <li>
942
                                        <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 -%]
942
                                        <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 -%]
943
                                    </li>
943
                                    </li>
944
                                [% END %]
944
                                [% END %]
945
                            </ul>
945
                            </ul>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (-2 / +3 lines)
Lines 321-327 Link Here
321
                                        <ul class="list-unstyled">
321
                                        <ul class="list-unstyled">
322
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
322
                                            [% FOREACH matching_request_for_patron IN matching_requests_for_patron %]
323
                                                <li>
323
                                                <li>
324
                                                    <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>
324
                                                    <a href="/cgi-bin/koha/opac-illrequests.pl?op=view&amp;illrequest_id=[% matching_request_for_patron.illrequest_id | uri %]"
325
                                                        >ILL Request #[% matching_request_for_patron.illrequest_id | html %]</a
326
                                                    >
325
                                                </li>
327
                                                </li>
326
                                            [% END %]
328
                                            [% END %]
327
                                        </ul>
329
                                        </ul>
328
- 

Return to bug 38441