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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+1 lines)
Lines 226-231 function validate1(date) { Link Here
226
    [% END %]
226
    [% END %]
227
    [% IF ( initials ) %]<li><span class="label">Initials: </span>[% initials %]</li>[% END %]
227
    [% IF ( initials ) %]<li><span class="label">Initials: </span>[% initials %]</li>[% END %]
228
    [% IF ( dateofbirth ) %]<li><span class="label">Date of birth:</span>[% dateofbirth | $KohaDates %]</li>[% END %]
228
    [% IF ( dateofbirth ) %]<li><span class="label">Date of birth:</span>[% dateofbirth | $KohaDates %]</li>[% END %]
229
    [% IF ( age ) %]<li><span class="label">Age:</span>[% age %] years</li>[% END %]
229
    [% IF ( sex ) %]<li><span class="label">Gender:</span>
230
    [% IF ( sex ) %]<li><span class="label">Gender:</span>
230
    [% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]
231
    [% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]
231
    </li>[% END %][% END %]
232
    </li>[% END %][% END %]
(-)a/members/moremember.pl (-1 / +5 lines)
Lines 256-261 my @borrowers_with_issues; Link Here
256
my $overdues_exist = 0;
256
my $overdues_exist = 0;
257
my $totalprice = 0;
257
my $totalprice = 0;
258
258
259
# Calculate and display patron's age
260
my $dateofbirth = $data->{ 'dateofbirth' };
261
my $age = GetAge($dateofbirth);
262
$template->param( age => $age );
263
259
### ###############################################################################
264
### ###############################################################################
260
# BUILD HTML
265
# BUILD HTML
261
# show all reserves of this borrower, and the position of the reservation ....
266
# show all reserves of this borrower, and the position of the reservation ....
262
- 

Return to bug 14763