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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc (-1 / +1 lines)
Lines 51-57 Link Here
51
        [%- SET display_patron_name = 0 -%]
51
        [%- SET display_patron_name = 0 -%]
52
    [%- END -%]
52
    [%- END -%]
53
[%- END -%]
53
[%- END -%]
54
[%- IF hide_patron_infos_if_needed AND ( display_patron_name OR display_cardnumber ) -%]
54
[%- IF display_patron_name OR display_cardnumber -%]
55
    [%- IF link_to == 'circulation_reserves' %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% data.borrowernumber | uri %]#reserves">
55
    [%- IF link_to == 'circulation_reserves' %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% data.borrowernumber | uri %]#reserves">
56
    [%- ELSIF link_to == 'circulation_recalls' %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% data.borrowernumber | uri %]#recalls">
56
    [%- ELSIF link_to == 'circulation_recalls' %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% data.borrowernumber | uri %]#recalls">
57
    [%- ELSE %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% data.borrowernumber | uri %]">
57
    [%- ELSE %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% data.borrowernumber | uri %]">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-3 / +2 lines)
Lines 440-446 legend:hover { Link Here
440
                                                            [% IF category_type == 'I' %]
440
                                                            [% IF category_type == 'I' %]
441
                                                                <li class="guarantor-details" data-borrowernumber="[% r.guarantor_id | $raw %]">
441
                                                                <li class="guarantor-details" data-borrowernumber="[% r.guarantor_id | $raw %]">
442
                                                                    <span class="label">Organization:</span>
442
                                                                    <span class="label">Organization:</span>
443
                                                                    [% INCLUDE 'patron-title.inc' patron=r.guarantor hide_patron_infos_if_needed=1 %]
443
                                                                    [% INCLUDE 'patron-title.inc' patron=r.guarantor %]
444
                                                                </li>
444
                                                                </li>
445
                                                                <li>
445
                                                                <li>
446
                                                                    <span class="label">Relationship:</span>
446
                                                                    <span class="label">Relationship:</span>
Lines 449-455 legend:hover { Link Here
449
                                                            [% ELSE %]
449
                                                            [% ELSE %]
450
                                                                <li class="guarantor-details" data-borrowernumber="[% r.guarantor_id | $raw %]">
450
                                                                <li class="guarantor-details" data-borrowernumber="[% r.guarantor_id | $raw %]">
451
                                                                    <span class="label">Guarantor:</span>
451
                                                                    <span class="label">Guarantor:</span>
452
                                                                    [% INCLUDE 'patron-title.inc' patron=r.guarantor hide_patron_infos_if_needed=1 %]
452
                                                                    [% INCLUDE 'patron-title.inc' patron=r.guarantor %]
453
                                                                </li>
453
                                                                </li>
454
                                                                <li>
454
                                                                <li>
455
                                                                    <span class="label">Relationship:</span>
455
                                                                    <span class="label">Relationship:</span>
456
- 

Return to bug 29768