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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-1 / +1 lines)
Lines 712-718 Link Here
712
			[% IF ( mandatorydateexpiry ) %]
712
			[% IF ( mandatorydateexpiry ) %]
713
            <label for="to" class="required">
713
            <label for="to" class="required">
714
			[% ELSE %]
714
			[% ELSE %]
715
            <label for="to">
715
            <label for="to" class="member_expiration">
716
			[% END %]
716
			[% END %]
717
			Expiry date (leave blank for auto calc): </label>
717
			Expiry date (leave blank for auto calc): </label>
718
            [% IF ( dateformat == "metric" ) %]
718
            [% IF ( dateformat == "metric" ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt (-1 / +1 lines)
Lines 60-66 Link Here
60
            <li><span class="label">Borrowernumber: </span> [% patron.borrowernumber | html %]</li>
60
            <li><span class="label">Borrowernumber: </span> [% patron.borrowernumber | html %]</li>
61
            <li><span class="label">Category: </span>[% patron.category.description | html %] ([% patron.category.categorycode | html %])</li>
61
            <li><span class="label">Category: </span>[% patron.category.description | html %] ([% patron.category.categorycode | html %])</li>
62
            <li><span class="label">Registration date: </span>[% patron.dateenrolled | $KohaDates %]</li>
62
            <li><span class="label">Registration date: </span>[% patron.dateenrolled | $KohaDates %]</li>
63
            <li><span class="label">Expiration date: </span>
63
            <li><span class="label member_expiration">Expiration date: </span>
64
            [% IF ( was_renewed ) %]
64
            [% IF ( was_renewed ) %]
65
                <strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong>
65
                <strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong>
66
            [% ELSE %]
66
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt (-1 / +1 lines)
Lines 28-34 Link Here
28
                <li>[% patron.emailpro | html %]</li>
28
                <li>[% patron.emailpro | html %]</li>
29
            [% END %]
29
            [% END %]
30
            <li>Registration date: [% patron.dateenrolled | $KohaDates %]</li>
30
            <li>Registration date: [% patron.dateenrolled | $KohaDates %]</li>
31
            <li>Expiration date: [% patron.dateexpiry | $KohaDates %]</li>
31
            <li class="member_expiration">Expiration date: [% patron.dateexpiry | $KohaDates %]</li>
32
            <li>Library: [% Branches.GetName( patron.branchcode ) | html %]</li>
32
            <li>Library: [% Branches.GetName( patron.branchcode ) | html %]</li>
33
            <li>Category: [% patron.category.description | html %]</li>
33
            <li>Category: [% patron.category.description | html %]</li>
34
        </ul>
34
        </ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +1 lines)
Lines 451-457 Link Here
451
                                        [% END %]
451
                                        [% END %]
452
452
453
                                        <li id="patron-expirationdate">
453
                                        <li id="patron-expirationdate">
454
                                            <span class="label">Expiration date: </span>
454
                                            <span class="label member_expiration">Expiration date: </span>
455
                                            [% IF ( was_renewed ) %]
455
                                            [% IF ( was_renewed ) %]
456
                                                <strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong>
456
                                                <strong class="reregistrinfo">[% patron.dateexpiry | $KohaDates %]</strong>
457
                                            [% ELSIF ( patron.is_expired ) %]
457
                                            [% ELSIF ( patron.is_expired ) %]
458
- 

Return to bug 15558