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 57-63 Link Here
57
        [% END %]
57
        [% END %]
58
        [% IF ( patron.dateofbirth ) %]
58
        [% IF ( patron.dateofbirth ) %]
59
            <li>
59
            <li>
60
                <span class="label">Date of birth:</span>
60
                <span class="label">Born:</span>
61
                [% INCLUDE 'patron-age.inc' %]
61
                [% INCLUDE 'patron-age.inc' %]
62
            </li>
62
            </li>
63
        [% END %]
63
        [% 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