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 547-554 Link Here
547
                                    [% IF mandatory.defined('fax') %]<span class="required">Required</span>[% END %]
547
                                    [% IF mandatory.defined('fax') %]<span class="required">Required</span>[% END %]
548
                                </li>
548
                                </li>
549
                            [% END %]
549
                            [% END %]
550
                            [% UNLESS hidden.defined('primary_contact_method') %]
550
                            <li>
551
                            <li>
551
                               <label for="borrower_primary_contact_method">Main contact method:</label>
552
                                [% IF ( mandatory.defined('primary_contact_method') ) %]
553
                                    <label for="borrower_primary_contact_method" class="required">Main contact method:</label>
554
                                [% ELSE %]
555
                                    <label for="borrower_primary_contact_method">Main contact method:</label>
556
                                [% END %]
557
552
                               <select id="borrower_primary_contact_method" name="borrower_primary_contact_method">
558
                               <select id="borrower_primary_contact_method" name="borrower_primary_contact_method">
553
                               <option value=""></option>
559
                               <option value=""></option>
554
                                 [% FOREACH contactprincipalloo IN contactprincipalloop %]
560
                                 [% FOREACH contactprincipalloo IN contactprincipalloop %]
Lines 596-602 Link Here
596
                                    [% END %]
602
                                    [% END %]
597
                                 [% END %]
603
                                 [% END %]
598
                               </select>
604
                               </select>
605
606
                                [% IF ( mandatory.defined('primary_contact_method') ) %]<span class="required">Required</span>[% END %]
599
                            </li>
607
                            </li>
608
                            [% END %]
600
                        </ol>
609
                        </ol>
601
                    </fieldset>
610
                    </fieldset>
602
                [% END %]
611
                [% END %]
603
- 

Return to bug 11879