6afd3e18985d31084050cde491b00a0b9cc09da8
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / includes / member-alt-address-style-us.inc
1         <fieldset class="rows" id="memberentry_address">
2         <legend id="alt_address_lgd">Alternate address</legend><ol>
3         [% UNLESS noB_streetnumber %]
4             <li>
5                 [% IF ( mandatoryB_streetnumber ) %]
6                     <label for="B_streetnumber" class="required">
7                 [% ELSE %]
8                     <label for="B_streetnumber">
9                 [% END %]
10                 Street Number: </label>
11                 <input type="text" id="B_streetnumber" name="B_streetnumber" size="5" value="[% patron.B_streetnumber | html %]" />
12                [% IF ( mandatoryB_streetnumber ) %]<span class="required">Required</span>[% END %]
13             </li>
14         [% END %]
15
16         [% IF roadtypes %]
17                 <li>
18             [% IF ( mandatoryB_streettype ) %]
19                 <label for="B_streettype" class="required">
20             [% ELSE %]
21                 <label for="B_streettype">
22         [% END %]
23         Street type: </label>
24         <select name="B_streettype">
25         <option value=""></option>
26         [% FOR roadtype IN roadtypes %]
27             [% IF roadtype.authorised_value == patron.B_streettype %]
28                 <option value="[% roadtype.authorised_value | html %]" selected="selected">[% roadtype.lib | html %]</option>
29             [% ELSE %]
30                 <option value="[% roadtype.authorised_value | html %]">[% roadtype.lib | html %]</option>
31             [% END %]
32         [% END %]
33         </select>
34         [% IF ( mandatoryB_streettype ) %]<span class="required">Required</span>[% END %]
35         </li>
36       [% END %]
37
38         [% UNLESS noB_address %]
39             <li>
40                 [% IF ( mandatoryB_address ) %]
41                     <label for="B_address" class="required">
42                 [% ELSE %]
43                     <label for="B_address">
44                 [% END %]
45                 Address: </label>
46                     <input type="text" id="B_address" name="B_address" size="40" value="[% patron.B_address | html %]" />
47       [% IF ( mandatoryB_address ) %]<span class="required">Required</span>[% END %]
48             </li>
49         [% END %]
50         [% UNLESS noB_address2 %]
51             <li>
52                 [% IF ( mandatoryB_address2 ) %]
53                     <label for="B_address2" class="required">
54                 [% ELSE %]
55                     <label for="B_address2">
56                 [% END %]
57                 Address 2: </label>
58                     <input type="text" id="B_address2" name="B_address2" size="40" value="[% patron.B_address2 | html %]" />
59       [% IF ( mandatoryB_address2 ) %]<span class="required">Required</span>[% END %]
60             </li>
61         [% END %]
62         [% UNLESS noB_city %]
63             <li>
64                 [% IF ( mandatoryB_city ) %]
65                     <label for="B_city" class="required" >
66                 [% ELSE %]
67                     <label for="B_city">
68                 [% END %]
69                 City: </label>
70                 <input type="text" id="B_city" name="B_city" size="20" value="[% patron.B_city | html %]" />
71       [% IF ( mandatoryB_city ) %]<span class="required">Required</span>[% END %]
72             </li>
73         [% END %]
74         [% UNLESS noB_state %]
75             <li>
76                 [% IF ( mandatoryB_state ) %]
77                     <label for="B_state" class="required" >
78                 [% ELSE %]
79                     <label for="B_state">
80                 [% END %]
81                 State: </label>
82                 <input type="text" id="B_state" name="B_state" size="20" value="[% patron.B_state | html %]" />
83       [% IF ( mandatoryB_state ) %]<span class="required">Required</span>[% END %]
84             </li>
85         [% END %]
86         [% UNLESS noB_zipcode %]
87             <li>
88                 [% IF ( mandatoryB_zipcode ) %]
89                     <label for="B_zipcode" class="required">
90                 [% ELSE %]
91                     <label for="B_zipcode">
92                 [% END %]
93                 ZIP/Postal code: </label>
94                     <input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="[% patron.B_zipcode | html %]" />
95       [% IF ( mandatoryB_zipcode ) %]<span class="required">Required</span>[% END %]
96             </li>
97         [% END %]
98         [% UNLESS noB_country %]
99             <li>
100                 [% IF ( mandatoryB_country ) %]
101                     <label for="B_country" class="required">
102                 [% ELSE %]
103                     <label for="B_country">
104                 [% END %]
105                 Country: </label>
106                     <input type="text" id="B_country" name="B_country" size="20" value="[% patron.B_country | html %]" />
107       [% IF ( mandatoryB_country ) %]<span class="required">Required</span>[% END %]
108             </li>
109         [% END %]
110         [% UNLESS noB_phone %]
111             <li>
112                 [% IF ( mandatoryB_phone ) %]
113                 <label for="B_phone" class="required">
114                 [% ELSE %]
115                 <label for="B_phone">
116                 [% END %]
117                 Phone: </label>
118                     <input type="text" id="B_phone" name="B_phone" value="[% patron.B_phone | html %]" />
119                 [% IF ( mandatoryB_phone ) %]<span class="required">Required</span>[% END %]
120             </li>
121         [% END %]
122         [% UNLESS noB_email %]
123             <li>
124         [% IF ( mandatoryB_email ) %]
125           <label for="B_email" class="required">
126         [% ELSE %]
127           <label for="B_email">
128         [% END %]
129         Email: </label>
130             <input type="text" id="B_email" name="B_email" size="45" value="[% patron.B_email | html %]" />
131         [% IF ( mandatoryB_email ) %]<span class="required">Required</span>[% END %] </li>
132         [% END %]
133         [% UNLESS nocontactnote %]
134             <li>
135                 [% IF ( mandatorycontactnote ) %]
136                 <label for="contactnote" class="required">
137                 [% ELSE %]
138                 <label for="contactnote">
139                 [% END %]
140                 Contact note: </label>
141                 <textarea id="contactnote" name="contactnote" cols="40" rows="2">[% contactnote | html %]</textarea>
142         [% IF ( mandatorycontactnote ) %]<span class="required">Required</span>[% END %]
143             </li>
144         [% END %]
145             </ol>
146         </fieldset>