Owen Leonard
40560b571d
This patch updates CSS and markup in the patron add/edit form so that there is better visual indication that sections can be collapsed by clicking headings. The JS function for showing and hiding sections has also been updated to reduce verbosity. Unrelated markup change for the sake of accessibility: A <label> has been added to the "Show collapsed fields" checkbox which is seen when CollapseFieldsPatronAddForm is active. To test, apply the patch and go to Patrons -> New patron. - Each section of the form should have an arrow indicator by the section heading indicating whether it is expanded or collapsed. - Mousing over the heading should show a border to help show the clickable region. - Clicking the header should collapse the section and the arrow indicator should change to reflect that the section is collapsed. - Go to Administration -> Sytem preferences and search for CollapseFieldsPatronAddForm. - Make some selections from the dropdown and save your changes. - Return to the patron entry form and confirm that your selections are collapsed by default. Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
255 lines
10 KiB
HTML
255 lines
10 KiB
HTML
[% USE Koha %]
|
|
[% USE AuthorisedValues %]
|
|
[% BLOCK 'alt-address-style' %]
|
|
<fieldset class="rows" id="memberentry_address">
|
|
<legend class="expanded" id="alt_address_lgd">
|
|
<i class="fa fa-caret-down"></i>
|
|
Alternate address
|
|
</legend>
|
|
<ol>
|
|
[% IF Koha.Preference( 'AddressFormat' ) %]
|
|
[% PROCESS "member-alt-address-style-${ Koha.Preference( 'AddressFormat' ) }" %]
|
|
[% ELSE %]
|
|
[% PROCESS 'member-alt-address-style-us' %]
|
|
[% END %]
|
|
</ol>
|
|
</fieldset>
|
|
[% END %]
|
|
|
|
[% BLOCK 'member-alt-address-style-us' %]
|
|
[% PROCESS 'alt-address-style_B_streetnumber' %]
|
|
[% PROCESS 'alt-address-style_roadtypes' %]
|
|
[% PROCESS 'alt-address-style_B_address' %]
|
|
[% PROCESS 'alt-address-style_B_address2' %]
|
|
[% PROCESS 'alt-address-style_B_city' %]
|
|
[% PROCESS 'alt-address-style_B_state' %]
|
|
[% PROCESS 'alt-address-style_B_zipcode' %]
|
|
[% PROCESS 'alt-address-style_B_country' %]
|
|
[% PROCESS 'alt-address-style_B_phone' %]
|
|
[% PROCESS 'alt-address-style_B_email' %]
|
|
[% PROCESS 'alt-address-style_B_contactnote' %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'member-alt-address-style-de' %]
|
|
[% PROCESS 'alt-address-style_roadtypes' %]
|
|
[% PROCESS 'alt-address-style_B_address' %]
|
|
[% PROCESS 'alt-address-style_B_streetnumber' %]
|
|
[% PROCESS 'alt-address-style_B_address2' %]
|
|
[% PROCESS 'alt-address-style_B_zipcode' %]
|
|
[% PROCESS 'alt-address-style_B_city' %]
|
|
[% PROCESS 'alt-address-style_B_state' %]
|
|
[% PROCESS 'alt-address-style_B_country' %]
|
|
[% PROCESS 'alt-address-style_B_phone' %]
|
|
[% PROCESS 'alt-address-style_B_email' %]
|
|
[% PROCESS 'alt-address-style_B_contactnote' %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'member-alt-address-style-fr' %]
|
|
[% PROCESS 'alt-address-style_B_streetnumber' %]
|
|
[% PROCESS 'alt-address-style_roadtypes' %]
|
|
[% PROCESS 'alt-address-style_B_address' %]
|
|
[% PROCESS 'alt-address-style_B_address2' %]
|
|
[% PROCESS 'alt-address-style_B_zipcode' %]
|
|
[% PROCESS 'alt-address-style_B_city' %]
|
|
[% PROCESS 'alt-address-style_B_state' %]
|
|
[% PROCESS 'alt-address-style_B_country' %]
|
|
[% PROCESS 'alt-address-style_B_phone' %]
|
|
[% PROCESS 'alt-address-style_B_email' %]
|
|
[% PROCESS 'alt-address-style_B_contactnote' %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_roadtypes' %]
|
|
[% SET roadtypes = AuthorisedValues.GetAuthValueDropbox('ROADTYPE') %]
|
|
[% IF roadtypes.count %]
|
|
[% UNLESS noB_streettype %]
|
|
<li>
|
|
[% IF ( mandatoryB_streettype ) %]
|
|
<label for="B_streettype" class="required">
|
|
[% ELSE %]
|
|
<label for="B_streettype">
|
|
[% END %]
|
|
Street type: </label>
|
|
<select name="B_streettype">
|
|
<option value=""></option>
|
|
[% FOR roadtype IN roadtypes %]
|
|
[% IF roadtype.authorised_value == patron.B_streettype %]
|
|
<option value="[% roadtype.authorised_value | html %]" selected="selected">[% roadtype.lib | html %]</option>
|
|
[% ELSE %]
|
|
<option value="[% roadtype.authorised_value | html %]">[% roadtype.lib | html %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select>
|
|
[% IF ( mandatoryB_streettype ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_address' %]
|
|
[% UNLESS noB_address %]
|
|
<li>
|
|
[% IF ( mandatoryB_address ) %]
|
|
<label for="B_address" class="required">
|
|
[% ELSE %]
|
|
<label for="B_address">
|
|
[% END %]
|
|
Address: </label>
|
|
<input type="text" id="B_address" name="B_address" size="40" value="[% patron.B_address | html %]" />
|
|
[% IF ( mandatoryB_address ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_streetnumber' %]
|
|
[% UNLESS noB_streetnumber %]
|
|
<li>
|
|
[% IF ( mandatoryB_streetnumber ) %]
|
|
<label for="B_streetnumber" class="required">
|
|
[% ELSE %]
|
|
<label for="B_streetnumber">
|
|
[% END %]
|
|
Street number: </label>
|
|
<input type="text" id="B_streetnumber" name="B_streetnumber" size="5" maxlength="10" value="[% patron.B_streetnumber | html %]" />
|
|
[% IF ( mandatoryB_streetnumber ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_address2' %]
|
|
[% UNLESS noB_address2 %]
|
|
<li>
|
|
[% IF ( mandatoryB_address2 ) %]
|
|
<label for="B_address2" class="required">
|
|
[% ELSE %]
|
|
<label for="B_address2">
|
|
[% END %]
|
|
Address 2: </label>
|
|
<input type="text" id="B_address2" name="B_address2" size="40" value="[% patron.B_address2 | html %]" />
|
|
[% IF ( mandatoryB_address2 ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_zipcode' %]
|
|
[% UNLESS noB_zipcode %]
|
|
<li>
|
|
[% IF ( mandatoryB_zipcode ) %]
|
|
<label for="B_zipcode" class="required">
|
|
[% ELSE %]
|
|
<label for="B_zipcode">
|
|
[% END %]
|
|
ZIP/Postal code: </label>
|
|
<input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="[% patron.B_zipcode | html %]" />
|
|
[% IF ( mandatoryB_zipcode ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_city' %]
|
|
[% UNLESS noB_city %]
|
|
<li>
|
|
[% IF ( mandatoryB_city ) %]
|
|
<label for="B_city" class="required" >
|
|
[% ELSE %]
|
|
<label for="B_city">
|
|
[% END %]
|
|
City: </label>
|
|
[% IF cities.count %]
|
|
<select class="select_city" data-addressfield="B_" name="select_city">
|
|
<option value="|||"></option>
|
|
[% FOREACH c IN cities %]
|
|
[% IF c.city_name == patron.B_city && c.city_state == patron.B_state && c.city_zipcode == patron.B_zipcode %]
|
|
<option value="[% c.city_zipcode | html %]|[% c.city_name | html %]|[% c.city_state | html %]|[% c.city_country | html %]" selected="selected">
|
|
[% ELSE %]
|
|
<option value="[% c.city_zipcode | html %]|[% c.city_name | html %]|[% c.city_state | html %]|[% c.city_country | html %]">
|
|
[% END %]
|
|
[% c.city_name | html %] [% c.city_state | html %] [% c.city_zipcode | html %]
|
|
</option>
|
|
[% END %]
|
|
</select>
|
|
<span class="hint">or enter</span>
|
|
[% END %]
|
|
<input type="text" id="B_city" name="B_city" size="20" value="[% patron.B_city | html %]" />
|
|
[% IF ( mandatoryB_city ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_state' %]
|
|
[% UNLESS noB_state %]
|
|
<li>
|
|
[% IF ( mandatoryB_state ) %]
|
|
<label for="B_state" class="required" >
|
|
[% ELSE %]
|
|
<label for="B_state">
|
|
[% END %]
|
|
State: </label>
|
|
<input type="text" id="B_state" name="B_state" size="20" value="[% patron.B_state | html %]" />
|
|
[% IF ( mandatoryB_state ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_country' %]
|
|
[% UNLESS noB_country %]
|
|
<li>
|
|
[% IF ( mandatoryB_country ) %]
|
|
<label for="B_country" class="required">
|
|
[% ELSE %]
|
|
<label for="B_country">
|
|
[% END %]
|
|
Country: </label>
|
|
<input type="text" id="B_country" name="B_country" size="20" value="[% patron.B_country | html %]" />
|
|
[% IF ( mandatoryB_country ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_phone' %]
|
|
[% UNLESS noB_phone %]
|
|
<li>
|
|
[% IF ( mandatoryB_phone ) %]
|
|
<label for="B_phone" class="required">
|
|
[% ELSE %]
|
|
<label for="B_phone">
|
|
[% END %]
|
|
Phone: </label>
|
|
<input type="text" id="B_phone" name="B_phone" value="[% patron.B_phone | html %]" />
|
|
[% IF ( mandatoryB_phone ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_email' %]
|
|
[% UNLESS noB_email %]
|
|
<li>
|
|
[% IF ( mandatoryB_email ) %]
|
|
<label for="B_email" class="required">
|
|
[% ELSE %]
|
|
<label for="B_email">
|
|
[% END %]
|
|
Email: </label>
|
|
[% IF ( NoUpdateEmail ) %]
|
|
<input type="text" id="B_email" name="B_email" size="45" value="[% patron.B_email | html %]" disabled="disabled"/>
|
|
[% ELSE %]
|
|
<input type="text" id="B_email" name="B_email" size="45" value="[% patron.B_email | html %]" />
|
|
[% END %]
|
|
[% IF ( mandatoryB_email ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% BLOCK 'alt-address-style_B_contactnote' %]
|
|
[% UNLESS nocontactnote %]
|
|
<li>
|
|
[% IF ( mandatorycontactnote ) %]
|
|
<label for="contactnote" class="required">
|
|
[% ELSE %]
|
|
<label for="contactnote">
|
|
[% END %]
|
|
Contact note: </label>
|
|
<textarea id="contactnote" name="contactnote" cols="40" rows="2">[% patron.contactnote | html %]</textarea>
|
|
[% IF ( mandatorycontactnote ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% END %]
|