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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc (-3 / +2 lines)
Lines 1-5 Link Here
1
[%- IF ( borrower.borrowernumber ) %]
1
[%- IF ( borrower.borrowernumber ) %]
2
    [%- IF borrower.category_type == 'I' %]
2
    [%- IF borrower.category.category_type == 'I' %]
3
        [%- borrower.surname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
3
        [%- borrower.surname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
4
    [%- ELSE %]
4
    [%- ELSE %]
5
        [%- IF invert_name %]
5
        [%- IF invert_name %]
Lines 12-18 Link Here
12
        ([% borrower.cardnumber | html %])
12
        ([% borrower.cardnumber | html %])
13
    [%- END %]
13
    [%- END %]
14
[%- ELSIF ( borrowernumber ) %]
14
[%- ELSIF ( borrowernumber ) %]
15
    [%- IF category_type == 'I' %]
15
    [%- IF borrower.category.category_type == 'I' %]
16
        [%- surname | html %] [% IF othernames %] ([% othernames | html %]) [% END %]
16
        [%- surname | html %] [% IF othernames %] ([% othernames | html %]) [% END %]
17
    [%- ELSE %]
17
    [%- ELSE %]
18
        [%- IF invert_name %]
18
        [%- IF invert_name %]
19
- 

Return to bug 18647