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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc (-1 / +1 lines)
Lines 55-61 Link Here
55
        [% END %]
55
        [% END %]
56
        [% IF ( patron.dateofbirth ) %]
56
        [% IF ( patron.dateofbirth ) %]
57
            <li>
57
            <li>
58
                <span class="label">Date of birth:</span>
58
                <span class="label">Born:</span>
59
                [% INCLUDE 'patron-age.inc' %]
59
                [% INCLUDE 'patron-age.inc' %]
60
            </li>
60
            </li>
61
        [% END %]
61
        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-age.inc (-3 / +2 lines)
Lines 2-8 Link Here
2
[%- IF ( patron ) -%]
2
[%- IF ( patron ) -%]
3
    [%- IF ( patron.dateofbirth ) -%]
3
    [%- IF ( patron.dateofbirth ) -%]
4
        [% patron.dateofbirth | $KohaDates -%]
4
        [% patron.dateofbirth | $KohaDates -%]
5
        [%- IF ( patron.get_age ) %] ([% patron.get_age | html %] years)
5
        [%- IF ( patron.get_age ) %] ([% patron.get_age | html %])
6
        [%- ELSIF ( patron.age ) %] ([% patron.age | html %] years)[% END -%]
6
        [%- ELSIF ( patron.age ) %] ([% patron.age | html %])[% END -%]
7
   [%- END -%]
7
   [%- END -%]
8
[%- END -%]
8
[%- END -%]
9
- 

Return to bug 15400