Lines 193-199
Link Here
|
193 |
|
193 |
|
194 |
<form method="post" action="/cgi-bin/koha/opac-memberentry.pl" id="memberentry-form" autocomplete="off"> |
194 |
<form method="post" action="/cgi-bin/koha/opac-memberentry.pl" id="memberentry-form" autocomplete="off"> |
195 |
|
195 |
|
196 |
[% FOREACH field = ['streetnumber' 'streettype' 'cardnumber' 'branchcode' 'categorycode' 'title' 'surname' 'firstname' 'dateofbirth' 'initials' 'othernames' 'address' 'address2' 'city' 'state' 'zipcode' 'country' 'phone' 'phonepro' 'mobile' 'email' 'emailpro' 'fax' 'B_streettype' 'B_address' 'B_address2' 'B_city' 'B_state' 'B_zipcode' 'B_country' 'B_phone' 'B_email' 'contactnote' 'altcontactsurname' 'altcontactfirstname' 'altcontactaddress1' 'altcontactaddress2' 'altcontactaddress3' 'altcontactstate' 'altcontactzipcode' 'altcontactcountry' 'altcontactphone' 'password' ] %] |
196 |
[% FOREACH field = ['streetnumber' 'streettype' 'cardnumber' 'branchcode' 'categorycode' 'title' 'surname' 'firstname' 'dateofbirth' 'initials' 'pronouns' 'othernames' 'address' 'address2' 'city' 'state' 'zipcode' 'country' 'phone' 'phonepro' 'mobile' 'email' 'emailpro' 'fax' 'B_streettype' 'B_address' 'B_address2' 'B_city' 'B_state' 'B_zipcode' 'B_country' 'B_phone' 'B_email' 'contactnote' 'altcontactsurname' 'altcontactfirstname' 'altcontactaddress1' 'altcontactaddress2' 'altcontactaddress3' 'altcontactstate' 'altcontactzipcode' 'altcontactcountry' 'altcontactphone' 'password' ] %] |
197 |
[% IF mandatory.defined( field ) %] |
197 |
[% IF mandatory.defined( field ) %] |
198 |
[% SET required.$field = 'required' %] |
198 |
[% SET required.$field = 'required' %] |
199 |
[% END %] |
199 |
[% END %] |
Lines 300-306
Link Here
|
300 |
[% END # / defined 'branchcode' %] |
300 |
[% END # / defined 'branchcode' %] |
301 |
|
301 |
|
302 |
[%# Following on one line for translatability %] |
302 |
[%# Following on one line for translatability %] |
303 |
[% UNLESS hidden.defined('title') && hidden.defined('surname') && hidden.defined('firstname') && hidden.defined('dateofbirth') && hidden.defined('initials') && hidden.defined('othernames') && hidden.defined('sex') %] |
303 |
[% UNLESS hidden.defined('title') && hidden.defined('surname') && hidden.defined('firstname') && hidden.defined('dateofbirth') && hidden.defined('initials') && hidden.defined('pronouns') && hidden.defined('othernames') && hidden.defined('sex') %] |
304 |
<div class="row"> |
304 |
<div class="row"> |
305 |
<div class="col"> |
305 |
<div class="col"> |
306 |
<fieldset class="rows" id="memberentry_identity"> |
306 |
<fieldset class="rows" id="memberentry_identity"> |
Lines 362-367
Link Here
|
362 |
</li> |
362 |
</li> |
363 |
[% END %] |
363 |
[% END %] |
364 |
|
364 |
|
|
|
365 |
[% UNLESS hidden.defined('pronouns') %] |
366 |
<li> |
367 |
<label for="borrower_pronouns" class="[% required.pronouns | html %]">Pronouns:</label> |
368 |
|
369 |
<input type="text" id="borrower_pronouns" name="borrower_pronouns" value="[% borrower.pronouns | html %]" class="[% required.prnouns | html %]" /> |
370 |
<div class="required_label [% required.pronouns | html %]">Required</div> |
371 |
</li> |
372 |
[% END %] |
373 |
|
365 |
[% UNLESS hidden.defined('othernames') %] |
374 |
[% UNLESS hidden.defined('othernames') %] |
366 |
<li> |
375 |
<li> |
367 |
<label for="borrower_othernames" class="[% required.othernames | html %]">Other names:</label> |
376 |
<label for="borrower_othernames" class="[% required.othernames | html %]">Other names:</label> |
368 |
- |
|
|