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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt (-4 / +4 lines)
Lines 19-25 Link Here
19
            <div class="col-xs-6">
19
            <div class="col-xs-6">
20
                <div id="patron-information">
20
                <div id="patron-information">
21
21
22
     [% UNLESS ( I ) %][% IF ( patron.othernames ) %]&ldquo;[% patron.othernames %]&rdquo;[% END %]
22
     [% UNLESS ( I ) %][% IF ( othernames ) %]&ldquo;[% othernames %]&rdquo;[% END %]
23
        <div class = "address">
23
        <div class = "address">
24
            <ul>
24
            <ul>
25
                [% IF Koha.Preference( 'AddressFormat' ) %]
25
                [% IF Koha.Preference( 'AddressFormat' ) %]
Lines 61-69 Link Here
61
	<h3>Library use</h3>
61
	<h3>Library use</h3>
62
	<div class="rows">
62
	<div class="rows">
63
	<ol>
63
	<ol>
64
    <li><span class="label">Card number: </span>[% patron.cardnumber %]</li>
64
    <li><span class="label">Card number: </span>[% cardnumber %]</li>
65
    <li><span class="label">Borrowernumber: </span> [% patron.borrowernumber %]</li>
65
        <li><span class="label">Borrowernumber: </span> [% borrowernumber %]</li>
66
    <li><span class="label">Category: </span>[% patron.category.description %] ([% patron.categorycode %])</li>
66
    <li><span class="label">Category: </span>[% categoryname %] ([% categorycode %])</li>
67
    <li><span class="label">Registration date: </span>[% dateenrolled | $KohaDates %]</li>
67
    <li><span class="label">Registration date: </span>[% dateenrolled | $KohaDates %]</li>
68
    <li><span class="label">Expiration date: </span>
68
    <li><span class="label">Expiration date: </span>
69
    [% IF ( was_renewed ) %]
69
    [% IF ( was_renewed ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-2 / +10 lines)
Lines 548-555 Link Here
548
                                    [% IF mandatory.defined('fax') %]<span class="required">Required</span>[% END %]
548
                                    [% IF mandatory.defined('fax') %]<span class="required">Required</span>[% END %]
549
                                </li>
549
                                </li>
550
                            [% END %]
550
                            [% END %]
551
                            [% UNLESS hidden.defined('primary_contact_method') %]
551
                            <li>
552
                            <li>
552
                               <label for="borrower_primary_contact_method">Main contact method:</label>
553
                                [% IF ( mandatory.defined('primary_contact_method') ) %]
554
                                    <label for="borrower_primary_contact_method" class="required">Main contact method:</label>
555
                                [% ELSE %]
556
                                    <label for="borrower_primary_contact_method">Main contact method:</label>
557
                                [% END %]
558
553
                               <select id="borrower_primary_contact_method" name="borrower_primary_contact_method">
559
                               <select id="borrower_primary_contact_method" name="borrower_primary_contact_method">
554
                               <option value=""></option>
560
                               <option value=""></option>
555
                                 [% FOREACH contactprincipalloo IN contactprincipalloop %]
561
                                 [% FOREACH contactprincipalloo IN contactprincipalloop %]
Lines 597-603 Link Here
597
                                    [% END %]
603
                                    [% END %]
598
                                 [% END %]
604
                                 [% END %]
599
                               </select>
605
                               </select>
606
607
                                [% IF ( mandatory.defined('primary_contact_method') ) %]<span class="required">Required</span>[% END %]
600
                            </li>
608
                            </li>
609
                            [% END %]
601
                        </ol>
610
                        </ol>
602
                    </fieldset>
611
                    </fieldset>
603
                [% END %]
612
                [% END %]
604
- 

Return to bug 11879