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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +3 lines)
Lines 301-307 Link Here
301
    <li><span class="label">Borrowernumber: </span> [% patron.borrowernumber %]</li>
301
    <li><span class="label">Borrowernumber: </span> [% patron.borrowernumber %]</li>
302
    <li><span class="label">Category: </span>[% patron.category.description %] ([% patron.categorycode %])</li>
302
    <li><span class="label">Category: </span>[% patron.category.description %] ([% patron.categorycode %])</li>
303
    <li><span class="label">Registration date: </span>[% patron.dateenrolled | $KohaDates %]</li>
303
    <li><span class="label">Registration date: </span>[% patron.dateenrolled | $KohaDates %]</li>
304
304
    [% IF ( date_renewed ) %]
305
        <li><span class="label">Renewal date: </span>[% patron.date_renewed | $KohaDates %]</li>
306
    [% END %]
305
    <li><span class="label">Expiration date: </span>
307
    <li><span class="label">Expiration date: </span>
306
    [% IF ( was_renewed ) %]
308
    [% IF ( was_renewed ) %]
307
            <strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong>
309
            <strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong>
(-)a/members/moremember.pl (-1 / +2 lines)
Lines 127-135 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', log Link Here
127
127
128
my $issues        = $patron->checkouts;
128
my $issues        = $patron->checkouts;
129
my $balance       = $patron->account->balance;
129
my $balance       = $patron->account->balance;
130
my $date_renewed  = $patron->date_renewed;
130
$template->param(
131
$template->param(
131
    issuecount => $issues->count,
132
    issuecount => $issues->count,
132
    fines      => $balance,
133
    fines      => $balance,
134
    date_renewed => $date_renewed,
133
);
135
);
134
136
135
my $category_type = $patron->category->category_type;
137
my $category_type = $patron->category->category_type;
136
- 

Return to bug 20867