Merge commit 'biblibre/3.2_community' into to-push
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / memberentrygen.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Patrons &rsaquo; 
3 <!-- TMPL_IF NAME="opadd" -->   Add<!-- TMPL_ELSE --> Modify<!--/TMPL_IF--> <!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF --><!--TMPL_UNLESS Name="opadd"--> <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR name="firstname" --><!--/TMPL_UNLESS--></title>
4 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
5 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/members.js"></script>
6 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
7 <script type="text/JavaScript" language="JavaScript">
8 //<![CDATA[
9     $(document).ready(function() {
10                 $("fieldset.rows input").keydown(function(e){ return checkEnter(e); });
11         $("#guarantordelete").click(function() {
12             $("#contact-details").hide().find('a').remove();
13             $("#guarantorid, #contactname, #contactfirstname").each(function () { this.value = "" });
14             $("#contactname, #contactfirstname")
15                 .each(function () { this.type = 'text' })
16                 .parent().find('span').remove();
17             $("#guarantorsearch").val("Set to Patron");
18         });
19         $("#select_city").change(function(){
20             var myRegEx=new RegExp(/(.*)\|(.*)/);
21             document.form.select_city.value.match(myRegEx);
22             document.form.zipcode.value=RegExp.$1;
23             document.form.city.value=RegExp.$2;
24         });
25     });
26
27     function clear_entry(node) {
28         var original = node.parentNode.parentNode;
29         $("input", original).attr('value', '');
30         $("select", original).attr('value', '');
31     }
32
33     function clone_entry(node) {
34         var original = node.parentNode.parentNode;
35         var clone = original.cloneNode(true);
36         var newId = 50 + parseInt(Math.random() * 100000);
37         $("input", clone).attr('id', function() {
38             return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
39         });
40         $("input", clone).attr('name', function() {
41             return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
42         });
43         $("select", clone).attr('id', function() {
44             return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
45         });
46         $("select", clone).attr('name', function() {
47             return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
48         });
49         original.parentNode.insertBefore(clone, original.nextSibling);
50     }
51
52 //]]>
53 </script>
54 </head>
55 <body>
56 <!-- TMPL_INCLUDE NAME="header.inc" -->
57 <!-- TMPL_INCLUDE NAME="patron-search.inc" -->
58
59 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; 
60 <!-- TMPL_IF NAME="opadd" -->
61                 Add<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
62 <!-- TMPL_VAR NAME="surname" --> <!-- TMPL_VAR name="firstname" -->
63 <!-- TMPL_ELSE --> 
64 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --></a> &rsaquo; <strong>Modify<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
65 </strong><!-- /TMPL_IF --></div>
66
67 <!-- TMPL_IF NAME="opadd" --><div id="doc" class="yui-t7"><!-- TMPL_ELSE --><div id="doc3" class="yui-t2"><!-- /TMPL_IF -->
68    
69    <div id="bd">
70         <div id="yui-main">
71         <div class="yui-b">
72
73
74         <!-- TMPL_IF NAME="opadd" -->
75         <h1>
76                 Add<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF --> <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --> 
77         </h1>
78         <!-- TMPL_ELSE -->
79         <h1>
80                 Modify<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
81 <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --> 
82         </h1>
83         <!-- /TMPL_IF -->
84   
85         <!-- TMPL_IF NAME="check_member" -->
86                 <p>
87                 <form name="form_double" action="/cgi-bin/koha/members/memberentry.pl" method="post">
88                         <div class="dialog alert">
89                                 <h3>Duplicate suspected</h3>
90                                 <a href="javascript:Dopop('borrowers_details.pl?borrowernumber=<!--TMPL_VAR NAME="check_member"-->');" >Detail</a>
91                                 Duplicate ?
92                                 <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;borrowernumber=<!--TMPL_VAR NAME="check_member"-->&amp;category_type=<!--TMPL_VAR NAME="check_categorytype"-->">Yes</a>
93                                 &nbsp;&nbsp;&nbsp; No, it is not
94                                 <!-- TMPL_IF NAME="checked"-->
95                                         <input type="checkbox" checked="checked" name="answernodouble" >
96                                 <!-- TMPL_ELSE -->
97                                         <input type="checkbox" name="answernodouble" />
98                                 <!-- /TMPL_IF -->
99                         </div>
100                 </form>
101                 </p>
102         <!--/TMPL_IF-->
103
104         <!-- TMPL_IF Name="debug" -->
105                 <div id="debug">
106                                 <div>Debug is on (level <!-- TMPL_VAR NAME="debug" -->)</div>
107                 </div>
108         <!-- /TMPL_IF -->
109         <!-- TMPL_IF Name="nok" -->
110                 <div class="dialog alert">
111                         <p>The following fields are wrong. Please fix them.</p>
112                         <ul>
113                         <!-- TMPL_IF NAME="ERROR_login_exist" -->
114                                 <li id="ERROR_login_exist">Login/password already exists.</li>
115                         <!-- /TMPL_IF -->
116                         <!-- TMPL_IF NAME="ERROR_cardnumber" -->
117                                 <li id="ERROR_cardnumber">Cardnumber already in use.</li>
118                         <!-- /TMPL_IF -->
119                         <!-- TMPL_IF NAME="ERROR_age_limitations" -->
120                                 <li id="ERROR_age_limitations">Patron's age is incorrect for their category.  
121                                         Ages allowed are <!-- TMPL_VAR NAME="ERROR_age_limitations"-->.</li>
122                         <!-- /TMPL_IF -->
123                         <!-- TMPL_IF NAME="ERROR_branch" -->
124                                 <li id="ERROR_branch">Library is invalid.</li>
125                         <!-- /TMPL_IF -->   
126                         <!-- TMPL_IF NAME="ERROR_dateofbirth" -->
127                                 <li id="ERROR_dateofbirth">Date of birth is invalid.</li>
128                         <!-- /TMPL_IF -->
129                         <!-- TMPL_IF NAME="ERROR_dateenrolled" -->
130                                 <li id="ERROR_dateenrolled">Date of enrollment is invalid.</li>
131                         <!-- /TMPL_IF -->
132                         <!-- TMPL_IF NAME="ERROR_dateexpiry" -->
133                                 <li id="ERROR_dateexpiry">Date of expiration is invalid.</li>
134                         <!-- /TMPL_IF -->
135                         <!-- TMPL_IF NAME="ERROR_short_password" -->
136                                 <li id="ERROR_short_password">Password must be at least <!-- TMPL_VAR NAME="minPasswordLength" --> characters long.</li>
137                         <!-- /TMPL_IF -->
138             <!-- TMPL_IF NAME="ERROR_extended_unique_id_failed" -->
139                 <li id="ERROR_extended_unique_id_failed">The attribute value 
140                     <!-- TMPL_VAR NAME="ERROR_extended_unique_id_failed" --> is already is use by another patron record.</li>
141                         <!-- /TMPL_IF -->
142                         </ul>
143                 </div>
144         <!-- /TMPL_IF -->
145         
146   
147 <form name="form" id="entryform"  action="/cgi-bin/koha/members/memberentry.pl" method="post"> 
148 <!--    field always hidden in different form (1,2,3) -->
149 <input type="hidden" name="BorrowerMandatoryField" value="<!--TMPL_VAR NAME="BorrowerMandatoryField"-->" />
150 <input type="hidden" name="category_type" value="<!-- TMPL_VAR name="category_type" -->" />
151 <input type="hidden" name="updtype" value="<!-- TMPL_VAR NAME="updtype" -->" />
152 <input type="hidden" name="select_roadtype" value="<!-- TMPL_VAR NAME="select_roadtype" -->" />
153 <input type="hidden" name="destination" value="<!-- TMPL_VAR NAME="destination" -->" />
154 <input type="hidden" name="check_member" value="<!-- TMPL_VAR NAME="check_member" -->" />
155 <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
156 <input type="hidden" name="nodouble"  value="<!-- TMPL_VAR NAME="nodouble" -->" />
157 <!--TMPL_IF Name="step"--><input type="hidden" name="step"  value="<!-- TMPL_VAR NAME="step" -->" /><!--/TMPL_IF-->
158 <!-- TMPL_IF NAME="opadd" --><input type="hidden" name="op" value="insert" /><!-- TMPL_ELSE --><input type="hidden" name="op" value="save" /><!-- /TMPL_IF -->
159
160 <!--TMPL_IF Name="step_1"-->
161         <fieldset class="rows" id="memberentry_identity">
162                 <legend><!--TMPL_IF Name="I"-->Organization <!--TMPL_ELSE-->Patron <!--/TMPL_IF-->identity</legend>
163                 <ol>
164                 <!-- TMPL_UNLESS name="I" -->
165                 <!-- TMPL_IF NAME="title_cgipopup" -->
166             <li>
167             <!-- TMPL_IF NAME="mandatorytitle" -->
168                 <label for="btitle" class="required">
169             <!-- TMPL_ELSE -->
170                 <label for="btitle">
171             <!-- /TMPL_IF-->
172             Salutation: </label>
173             <!-- TMPL_VAR NAME="borrotitlepopup" -->
174             <!-- TMPL_IF NAME="mandatorytitle" --><span class="required">Required</span><!-- /TMPL_IF -->
175             </li>
176                 <!-- /TMPL_IF -->
177         <!-- /TMPL_UNLESS -->
178                 <li>
179                 <!-- TMPL_IF NAME="mandatorysurname" -->
180                 <label for="surname" class="required">
181                 <!-- TMPL_ELSE -->
182                 <label for="surname">
183                 <!-- /TMPL_IF-->
184                 Surname: </label>
185                 <!-- TMPL_IF NAME="uppercasesurnames" -->
186                 <input style="text-transform:uppercase;" type="text" id="surname" name="surname" size="20"  value="<!-- TMPL_VAR NAME="surname" -->" />
187                 <!-- TMPL_ELSE -->
188                 <input type="text" id="surname" name="surname" size="20"  value="<!-- TMPL_VAR NAME="surname" -->" />
189                 <!-- /TMPL_IF -->
190                 <!-- TMPL_IF NAME="mandatorysurname" --><span class="required">Required</span><!-- /TMPL_IF -->
191                 </li>
192                 <!-- TMPL_UNLESS name="I" -->
193             <li>
194                 <!-- TMPL_IF NAME="mandatoryfirstname" -->
195                 <label for="firstname" class="required">
196                 <!-- TMPL_ELSE -->
197                 <label for="firstname">
198                 <!-- /TMPL_IF-->
199                 First name: </label>
200                 <input type="text" id="firstname" name="firstname" size="20"  value="<!-- TMPL_VAR NAME="firstname" -->" />
201                 <!-- TMPL_IF NAME="mandatoryfirstname" --><span class="required">Required</span><!-- /TMPL_IF -->
202             </li>
203             <li>
204                 <!-- TMPL_IF NAME="mandatorydateofbirth" -->
205                 <label for="dateofbirth" class="required">
206                 <!-- TMPL_ELSE -->
207                 <label for="dateofbirth">
208                 <!-- /TMPL_IF-->
209                 Date of birth: </label>
210                                 
211         <!-- TMPL_IF NAME="metric" -->                  
212                 <input type="text" id="dateofbirth" name="dateofbirth" size="20" onchange="CheckDate(document.form.dateofbirth);" value="<!-- TMPL_VAR NAME="dateofbirth" -->" />
213 <!-- TMPL_ELSE -->
214                 <input type="text" id="dateofbirth" name="dateofbirth" size="20" value="<!-- TMPL_VAR NAME="dateofbirth" -->" />
215 <!-- /TMPL_IF -->
216
217                 <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateofbirth_button" alt="Show Calendar" />
218         <script language="JavaScript" type="text/javascript">
219             Calendar.setup(
220             {
221                 inputField : "dateofbirth",
222                 ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
223                 button : "dateofbirth_button"
224             }
225             );
226         </script>
227         <!-- TMPL_IF NAME="mandatorydateofbirth" --><span class="required">Required</span><!-- /TMPL_IF -->
228         <!-- TMPL_IF NAME="ERROR_dateofbirth" --><span class="required">(Error)</span><!-- /TMPL_IF -->
229             </li>
230             <li>
231                 <!-- TMPL_IF NAME="mandatoryinitials" -->
232                     <label for="initials" class="required">
233                 <!-- TMPL_ELSE -->
234                     <label for="initials">
235                 <!-- /TMPL_IF-->
236                 Initials: </label>
237                 <input type="text" id="initials" name="initials" size="20"  value="<!-- TMPL_VAR NAME="initials" -->" />        
238                 <!-- TMPL_IF NAME="mandatoryinitials" --><span class="required">Required</span><!-- /TMPL_IF -->
239             </li>
240         <!-- /TMPL_UNLESS -->
241                 <li>
242                         <!-- TMPL_IF NAME="mandatoryothernames" -->
243                         <label for="othernames" class="required">
244                         <!-- TMPL_ELSE -->
245                         <label for="othernames">
246                         <!-- /TMPL_IF-->
247                         Other name: </label>
248                         <input type="text" id="othernames" name="othernames" size="20"  value="<!-- TMPL_VAR NAME="othernames" -->" />
249 <!-- TMPL_IF NAME="mandatoryothernames" --><span class="required">Required</span><!-- /TMPL_IF -->
250                 <!-- TMPL_IF NAME="I" --><input type="hidden" name="sex" value="N" /><!-- /TMPL_IF -->
251                 </li>
252     <!--TMPL_UNLESS Name="I"-->
253                 <li class="radio">
254                 
255                 <!-- TMPL_IF NAME="female" -->
256                                 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" checked="checked"  />
257 <!-- TMPL_ELSE -->
258                                 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" />
259 <!-- /TMPL_IF -->
260                 <!-- TMPL_IF NAME="male" -->
261                 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" checked="checked" />
262 <!-- TMPL_ELSE -->
263                                 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" />
264 <!-- /TMPL_IF -->
265 <!-- TMPL_IF NAME="none" -->
266                                 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value=""  checked="checked"  />
267 <!-- TMPL_ELSE -->
268                                 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value="" />
269 <!-- /TMPL_IF -->
270         </li>
271     <!--/TMPL_UNLESS-->
272                 </ol>
273         </fieldset>
274         
275 <!--TMPL_IF Name="showguarantor"--><input type="hidden" id="guarantorid" name="guarantorid"   value="<!-- TMPL_VAR NAME="guarantorid" -->" />
276     <fieldset class="rows">
277         <legend>Guarantor Information</legend>
278         <ol>
279 <!--TMPL_IF Name="P"-->
280                 <!-- TMPL_IF NAME="guarantorid" -->
281                 <li id="contact-details">
282                 <!-- TMPL_ELSE -->
283                 <li id="contact-details" style="display: none">
284                 <!-- /TMPL_IF -->
285                     <span class="label">Organization #:</span> <!-- TMPL_IF NAME="guarantorid" --> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="guarantorid" -->" target="blank"><!-- TMPL_VAR NAME="guarantorid" --></a><!-- /TMPL_IF -->
286                 </li>
287                 <li>
288                     <label for="contactname">Organization name: </label>
289                     <!-- TMPL_IF NAME="guarantorid" -->
290                     <span><!-- TMPL_VAR NAME="contactname" --></span>
291                     <input name="contactname" id="contactname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
292                     <!-- TMPL_ELSE -->
293                     <input name="contactname" id="contactname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
294                     <!-- /TMPL_IF -->
295                 </li>
296 <!-- TMPL_ELSE -->
297  <!-- TMPL_IF NAME="C" -->
298  <!-- TMPL_IF NAME="guarantorid" -->
299  <li id="contact-details">
300  <!-- TMPL_ELSE -->
301  <li id="contact-details" style="display: none">
302  <!-- /TMPL_IF -->
303      <span class="label">Patron #:</span> <!-- TMPL_IF NAME="guarantorid" --> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="guarantorid" -->" target="blank"><!-- TMPL_VAR NAME="guarantorid" --></a><!-- /TMPL_IF -->
304  </li>
305  <li>
306      <label for="contactname">Surname: </label>
307      <!-- TMPL_IF NAME="guarantorid" -->
308      <span><!-- TMPL_VAR NAME="contactname" --></span>
309      <input name="contactname" id="contactname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
310      <!-- TMPL_ELSE -->
311      <input name="contactname" id="contactname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
312      <!-- /TMPL_IF -->
313  </li>
314  <li>
315      <label for="contactfirstname">First name: </label>
316      <!-- TMPL_IF NAME="guarantorid" -->
317      <span><!-- TMPL_VAR NAME="contactfirstname" --></span>
318      <input name="contactfirstname" id="contactfirstname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactfirstname" -->" />
319      <!-- TMPL_ELSE -->
320      <input name="contactfirstname" id="contactfirstname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactfirstname" -->" />
321      <!-- /TMPL_IF -->
322  </li>
323  <!-- TMPL_IF name="relshiploop" -->
324  <li>
325      <label for="relationship">Relationship: </label>
326      <select name="relationship" id="relationship" >
327          <!-- TMPL_LOOP name="relshiploop" -->
328          <!-- TMPL_IF name="selected" -->
329          <option value="<!-- TMPL_VAR name="relationship" -->" selected="selected" ><!-- TMPL_VAR name="relationship" --></option>
330          <!-- TMPL_ELSE -->
331          <option value="<!-- TMPL_VAR name="relationship" -->"><!-- TMPL_VAR name="relationship" --></option>
332          <!-- /TMPL_IF -->
333          <!-- /TMPL_LOOP -->
334      </select>
335  </li>
336  <!-- /TMPL_IF -->
337  <!-- /TMPL_IF -->
338 <!--/TMPL_IF -->
339         <li>
340             <span class="label">&nbsp;</span>
341             <!-- TMPL_IF NAME="guarantorid" -->
342             <input id="guarantorsearch" type="button" value="Change" onclick="Dopopguarantor('guarantor_search.pl');" />
343             <!-- TMPL_ELSE -->
344             <input id="guarantorsearch" type="button" value="Set to Patron" onclick="Dopopguarantor('guarantor_search.pl');" />
345             <!-- /TMPL_IF -->
346             <input id="guarantordelete" type="button" value="Delete" />
347         </li>
348         </ol>
349     </fieldset>
350
351 <!--/TMPL_IF-->
352 <fieldset class="rows">
353     <legend>Main address</legend><ol>
354     <li>
355       <!-- TMPL_IF NAME="mandatorystreetnumber" -->
356       <label for="streetnumber" class="required">
357       <!--TMPL_ELSE-->
358       <label for="streetnumber">
359       <!-- /TMPL_IF-->
360       Street number: </label>
361       <input type="text" id="streetnumber" name="streetnumber" size="5" value="<!-- TMPL_VAR NAME="streetnumber" -->" />
362 <!-- TMPL_IF NAME="mandatorystreetnumber" --><span class="required">Required</span><!-- /TMPL_IF -->
363     </li>
364     <!-- TMPL_IF NAME="road_cgipopup" -->
365       <li>
366       <!-- TMPL_IF NAME="mandatorystreettype" -->
367       <label for="streettype" class="required">
368       <!--TMPL_ELSE-->
369       <label for="streettype">
370       <!-- /TMPL_IF-->
371       Street type: </label>
372       <!-- TMPL_VAR NAME="roadpopup" -->
373           <!-- TMPL_IF NAME="mandatorystreettype" --><span class="required">Required</span><!-- /TMPL_IF -->
374       </li>
375     <!--/TMPL_IF--> 
376     <li>
377       <!-- TMPL_IF NAME="mandatoryaddress" -->
378       <label for="address" class="required">
379       <!--TMPL_ELSE-->
380       <label for="address">
381       <!--/TMPL_IF-->
382       Address: </label>
383       <input type="text" id="address" name="address" size="35" value="<!-- TMPL_VAR NAME="address" -->" />
384           <!-- TMPL_IF NAME="mandatoryaddress" --><span class="required">Required</span><!-- /TMPL_IF -->
385     </li>
386     <li>
387       <!-- TMPL_IF NAME="mandatoryaddress2" -->
388       <label for="address2" class="required">
389       <!--TMPL_ELSE-->
390       <label for="address2">
391       <!-- /TMPL_IF-->
392       Address 2: </label>
393       <input type="text" id="address2" name="address2" size="35" value="<!-- TMPL_VAR NAME="address2" -->" />
394           <!-- TMPL_IF NAME="mandatoryaddress2" --><span class="required">Required</span><!-- /TMPL_IF -->
395     </li>  
396     <li>
397       <!-- TMPL_IF NAME="mandatorycity" -->
398         <label for="city" class="required">
399       <!--TMPL_ELSE-->
400         <label for="city">
401       <!-- /TMPL_IF-->
402       City, State: </label>
403         
404         <input type="text" id="city" name="city" size="20" value="<!-- TMPL_VAR NAME="city" -->" />
405         <!-- TMPL_IF NAME="city_cgipopup" -->or <strong>choose</strong> <!-- TMPL_VAR NAME="citypopup" --><!-- /TMPL_IF -->
406           <!-- TMPL_IF NAME="mandatorycity" --><span class="required">Required</span><!-- /TMPL_IF -->
407     </li>
408     <li> 
409       <!-- TMPL_IF NAME="mandatoryzipcode" -->
410         <label for="zipcode" class="required">
411       <!--TMPL_ELSE-->
412         <label for="zipcode">
413       <!-- /TMPL_IF-->
414       Zip/Postal code: </label>
415       <input type="text" name="zipcode" id="zipcode" size="10" value="<!-- TMPL_VAR NAME="zipcode" -->" />
416           <!-- TMPL_IF NAME="mandatoryzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
417     </li>
418     
419     <li> 
420       <!-- TMPL_IF NAME="mandatorycountry" -->
421         <label for="country" class="required">
422       <!--TMPL_ELSE-->
423         <label for="country">
424       <!-- /TMPL_IF-->
425       Country: </label>
426       <input type="text" name="country" id="country" size="20" value="<!-- TMPL_VAR NAME="country" -->" />
427           <!-- TMPL_IF NAME="mandatorycountry" --><span class="required">Required</span><!-- /TMPL_IF -->
428     </li>    
429   
430         </ol>
431     </fieldset>
432   <fieldset class="rows" id="memberentry_contact">
433     <legend>Contact</legend><ol>
434       <li>
435       <!-- TMPL_IF NAME="mandatoryphone" --> 
436       <label for="phone" class="required">
437       <!--TMPL_ELSE-->
438       <label for="phone">
439       <!-- /TMPL_IF-->
440       Phone (home): </label>
441       <input type="text" id="phone" name="phone" value="<!-- TMPL_VAR NAME="phone" -->" />
442           <!-- TMPL_IF NAME="mandatoryphone" --><span class="required">Required</span><!-- /TMPL_IF --><div class="hint">Shows on transit slips</div>
443
444     </li>
445     <li>
446       <!-- TMPL_IF NAME="mandatoryphonepro" -->
447       <label for="phonepro" class="required">
448       <!--TMPL_ELSE-->
449       <label for="phonepro">
450       <!-- /TMPL_IF-->
451       Phone (work): </label>
452       <input type="text" id="phonepro" name="phonepro" value="<!-- TMPL_VAR NAME="phonepro" -->" />
453           <!-- TMPL_IF NAME="mandatoryphonepro" --><span class="required">Required</span><!-- /TMPL_IF -->
454     </li>
455     <li>
456       <!-- TMPL_IF NAME="mandatorymobile" -->
457       <label for="mobile" class="required">
458       <!--TMPL_ELSE-->
459       <label for="mobile">
460       <!-- /TMPL_IF-->
461       Phone (cell): </label>
462       <input type="text" id="mobile" name="mobile" value="<!-- TMPL_VAR NAME="mobile" -->" />
463           <!-- TMPL_IF NAME="mandatorymobile" --><span class="required">Required</span><!-- /TMPL_IF -->
464     </li>
465     <li>
466       <!-- TMPL_IF NAME="mandatoryemail" -->
467       <label for="email" class="required">
468       <!--TMPL_ELSE-->
469       <label for="email">
470       <!-- /TMPL_IF-->
471       Email (home): </label>
472       <input type="text" id="email" name="email" size="45" value="<!-- TMPL_VAR NAME="email" -->" />  
473           <!-- TMPL_IF NAME="mandatoryemail" --><span class="required">Required</span><!-- /TMPL_IF --><div class="hint">Shows on transit slips</div>
474
475     </li>
476     <li>
477       <!-- TMPL_IF NAME="mandatoryemailpro" --> 
478       <label for="emailpro" class="required">
479       <!--TMPL_ELSE-->
480       <label for="emailpro">
481       <!-- /TMPL_IF-->
482       Email (work): </label>
483       <input type="text" id="emailpro" name="emailpro" size="45" value="<!-- TMPL_VAR NAME="emailpro" -->" />
484           <!-- TMPL_IF NAME="mandatoryemailpro" --><span class="required">Required</span><!-- /TMPL_IF -->
485     </li>
486     <li>
487       <!-- TMPL_IF NAME="mandatoryfax" -->
488       <label for="fax" class="required">
489       <!--TMPL_ELSE-->
490       <label for="fax">
491       <!-- /TMPL_IF-->
492       Fax: </label>
493       <input type="text" id="fax" name="fax" value="<!-- TMPL_VAR NAME="fax" -->" />
494           <!-- TMPL_IF NAME="mandatoryfax" --><span class="required">Required</span><!-- /TMPL_IF -->
495     </li>
496         </ol>
497   </fieldset>
498
499
500 <!-- ************************ STEP_1 *********************** -->
501 <!--/TMPL_IF -->
502 <!--TMPL_IF Name="step_6"-->
503
504                 <fieldset class="rows" id="memberentry_address">
505                 <legend>Alternate address</legend><ol>
506                         <li>
507                                 <!-- TMPL_IF NAME="mandatoryB_address" -->
508                                         <label for="B_address" class="required">
509                                 <!--TMPL_ELSE-->
510                                         <label for="B_address">
511                                 <!-- /TMPL_IF-->
512                                 Address: </label>
513                                 <input type="text" id="B_address" name="B_address" size="40" value="<!-- TMPL_VAR NAME="B_address" -->" />
514           <!-- TMPL_IF NAME="mandatoryB_address" --><span class="required">Required</span><!-- /TMPL_IF -->
515                         </li>
516                         <li>
517                                 <!-- TMPL_IF NAME="mandatoryB_address2" -->
518                                         <label for="B_address2" class="required">
519                                 <!--TMPL_ELSE-->
520                                         <label for="B_address2">
521                                 <!-- /TMPL_IF-->
522                                 Address 2: </label>
523                                 <input type="text" id="B_address2" name="B_address2" size="40" value="<!-- TMPL_VAR NAME="B_address2" -->" />
524           <!-- TMPL_IF NAME="mandatoryB_address2" --><span class="required">Required</span><!-- /TMPL_IF -->
525                         </li>                   
526                         <li>
527                                 <!-- TMPL_IF NAME="mandatoryB_city" -->
528                                         <label for="B_city" class="required" >
529                                 <!--TMPL_ELSE-->
530                                         <label for="B_city">
531                                 <!-- /TMPL_IF-->
532                                 City, State: </label>
533                                 <input type="text" id="B_city" name="B_city" size="20" value="<!-- TMPL_VAR NAME="B_city" -->" />
534           <!-- TMPL_IF NAME="mandatoryB_city" --><span class="required">Required</span><!-- /TMPL_IF -->
535                         </li>
536                         <li>
537                                 <!-- TMPL_IF NAME="mandatoryB_zipcode" -->
538                                         <label for="B_zipcode" class="required">
539                                 <!--TMPL_ELSE-->
540                                         <label for="B_zipcode">
541                                 <!-- /TMPL_IF-->
542                                 Zip/Postal code: </label>
543                                 <input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="<!-- TMPL_VAR NAME="B_zipcode" -->" />
544           <!-- TMPL_IF NAME="mandatoryB_zipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
545                         </li>
546                         <li>
547                                 <!-- TMPL_IF NAME="mandatoryB_country" -->
548                                         <label for="B_country" class="required">
549                                 <!--TMPL_ELSE-->
550                                         <label for="B_country">
551                                 <!-- /TMPL_IF-->
552                                 Country: </label>
553                                 <input type="text" id="B_country" name="B_country" size="20" value="<!-- TMPL_VAR NAME="B_country" -->" />
554           <!-- TMPL_IF NAME="mandatoryB_country" --><span class="required">Required</span><!-- /TMPL_IF -->
555                         </li>
556             <li>
557                 <!-- TMPL_IF NAME="mandatoryB_phone" -->
558                 <label for="B_phone" class="required">
559                 <!--TMPL_ELSE-->
560                 <label for="B_phone">
561                 <!-- /TMPL_IF-->
562                 Phone: </label>  
563                 <input type="text" id="B_phone" name="B_phone" value="<!-- TMPL_VAR NAME="B_phone" -->" />
564                 <!-- TMPL_IF NAME="mandatoryB_phone" --><span class="required">Required</span><!-- /TMPL_IF -->
565             </li>
566                         <li> 
567         <!-- TMPL_IF NAME="mandatoryB_email" -->
568           <label for="B_email" class="required">
569         <!--TMPL_ELSE-->
570           <label for="B_email">
571         <!-- /TMPL_IF-->
572         Email: </label>
573         <input type="text" id="B_email" name="B_email" size="45" value="<!-- TMPL_VAR NAME="B_email" -->" />
574                 <!-- TMPL_IF NAME="mandatoryB_email" --><span class="required">Required</span><!-- /TMPL_IF --> </li>
575             <li>
576                 <!-- TMPL_IF NAME="mandatorycontactnote" -->
577                 <label for="contactnote" class="required">
578                 <!--TMPL_ELSE-->
579                 <label for="contactnote">
580                 <!-- /TMPL_IF-->
581                 Contact note: </label>
582                 <textarea id="contactnote" name="contactnote" cols="40" rows="2"><!-- TMPL_VAR NAME="contactnote" --></textarea>
583         <!-- TMPL_IF NAME="mandatorycontactnote" --><span class="required">Required</span><!-- /TMPL_IF -->
584             </li>
585                         </ol>
586                 </fieldset>
587 <!-- /TMPL_IF -->               
588 <!--TMPL_IF Name="step_2"-->
589                 <fieldset class="rows" id="memberentry_altaddress">       
590                     <legend>Alternate Contact</legend><ol>
591                         <li>
592                             <!-- TMPL_IF NAME="mandatoryaltcontactsurname" -->
593                                 <label for="altcontactsurname" class="required">
594                                 <!-- TMPL_ELSE -->
595                                 <label for="altcontactsurname">
596                                 <!-- /TMPL_IF -->
597                                 Surname:</label>
598                                 <input type="text" name="altcontactsurname" id="altcontactsurname" value="<!-- TMPL_VAR NAME="altcontactsurname" -->" />
599                                 <!-- TMPL_IF NAME="mandatoryaltcontactsurname" --><span class="required">Required</span><!-- /TMPL_IF -->
600                         </li>
601                         <li>
602                             <!-- TMPL_IF NAME="mandatoryaltcontactfirstname" -->
603                                 <label for="altcontactfirstname" class="required">
604                                 <!-- TMPL_ELSE -->
605                                 <label for="altcontactfirstname">
606                                 <!-- /TMPL_IF -->
607                                 First name:</label>
608                                 <input type="text" name="altcontactfirstname" id="altcontactfirstname" value="<!-- TMPL_VAR NAME="altcontactfirstname" -->" />
609                                 <!-- TMPL_IF NAME="mandatoryaltcontactfirstname" --><span class="required">Required</span><!-- /TMPL_IF -->
610                         </li>
611                         <li>
612                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress1" -->
613                                 <label for="altcontactaddress1" class="required">
614                                 <!-- TMPL_ELSE -->
615                                 <label for="altcontactaddress1">
616                                 <!-- /TMPL_IF -->
617                                 Address:</label>
618                                 <input type="text" name="altcontactaddress1" id="altcontactaddress1" value="<!-- TMPL_VAR NAME="altcontactaddress1" -->" size="40" />
619                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress1" --><span class="required">Required</span><!-- /TMPL_IF -->
620                         </li>
621                         <li>
622                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress2" -->
623                                 <label for="altcontactaddress2" class="required">
624                                 <!-- TMPL_ELSE -->
625                                 <label for="altcontactaddress2">
626                                 <!-- /TMPL_IF -->
627                                 Address 2:</label>
628                                 <input type="text" name="altcontactaddress2" id="altcontactaddress2" value="<!-- TMPL_VAR NAME="altcontactaddress2" -->" size="40" />
629                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress2" --><span class="required">Required</span><!-- /TMPL_IF -->
630                         </li>
631                         <li>
632                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress3" -->
633                                 <label for="altcontactaddress3" class="required">
634                                 <!-- TMPL_ELSE -->
635                                 <label for="altcontactaddress3">
636                                 <!-- /TMPL_IF -->
637                                 City, State:</label>
638                                 <input type="text" name="altcontactaddress3" id="altcontactaddress3" value="<!-- TMPL_VAR NAME="altcontactaddress3" -->" size="40" />
639                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress3" --><span class="required">Required</span><!-- /TMPL_IF -->
640                         </li>
641                         <li>
642                             <!-- TMPL_IF NAME="mandatoryaltcontactzipcode" -->
643                                 <label for="altcontactzipcode" class="required">
644                                 <!-- TMPL_ELSE -->
645                                 <label for="altcontactzipcode">
646                                 <!-- /TMPL_IF -->
647                                 Zip/Postal code:</label>
648                                 <input type="text" name="altcontactzipcode" id="altcontactzipcode" value="<!-- TMPL_VAR NAME="altcontactzipcode" -->" size="5" />
649                                 <!-- TMPL_IF NAME="mandatoryaltcontactzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
650                         </li>
651                         <li>
652                             <!-- TMPL_IF NAME="mandatoryaltcontactcountry" -->
653                                 <label for="altcontactcountry" class="required">
654                                 <!-- TMPL_ELSE -->
655                                 <label for="altcontactcountry">
656                                 <!-- /TMPL_IF -->
657                                 Country:</label>
658                                 <input type="text" name="altcontactcountry" id="altcontactcountry" value="<!-- TMPL_VAR NAME="altcontactcountry" -->" size="20" />
659                                 <!-- TMPL_IF NAME="mandatoryaltcontactcountry" --><span class="required">Required</span><!-- /TMPL_IF -->
660                         </li>                   
661                         <li>
662                             <!-- TMPL_IF NAME="mandatoryaltcontactphone" -->
663                                 <label for="altcontactphone" class="required">
664                                 <!-- TMPL_ELSE -->
665                                 <label for="altcontactphone">
666                                 <!-- /TMPL_IF -->
667                                 Phone:</label>
668                                 <input type="text" name="altcontactphone" id="altcontactphone" value="<!-- TMPL_VAR NAME="altcontactphone" -->" />
669                                 <!-- TMPL_IF NAME="mandatoryaltcontactphone" --><span class="required">Required</span><!-- /TMPL_IF -->
670                         </li>
671             </ol>
672         </fieldset>
673
674
675   <!-- TMPL_IF NAME="I" -->
676         <!-- TMPL_IF NAME="memberofinstution" -->
677         <fieldset class="rows" id="memberentry_organisation">
678                 <legend>Organizations</legend><ol>
679                 <li>
680                         <!-- TMPL_IF NAME="mandatoryphone" --> 
681                         <label for="organisations" class="required">
682                         <!--TMPL_ELSE-->
683                         <label for="organisations">
684                         <!-- /TMPL_IF-->
685                         Organization(s): </label>
686                         <!-- TMPL_VAR NAME="CGIorganisations" -->
687           <!-- TMPL_IF NAME="mandatoryphone" --><span class="required">Required</span><!-- /TMPL_IF -->
688                 </li>
689                 </ol>
690         </fieldset>
691         <!-- /TMPL_IF -->
692   <!-- /TMPL_IF -->
693               
694 <!-- /TMPL_IF -->
695 <!--TMPL_IF Name="step_3"-->
696
697   <fieldset class="rows" id="memberentry_library_management">
698     <legend>Library Management</legend><ol>
699    <li> <!-- TMPL_IF NAME="mandatorycardnumber" -->
700       <label for="cardnumber" class="required">
701     <!--TMPL_ELSE -->
702       <label for="cardnumber">
703     <!-- /TMPL_IF--> 
704     Card number: </label>
705     <input type="text" id="cardnumber" name="cardnumber" size="20" value="<!-- TMPL_VAR NAME="cardnumber" -->" />
706           <!-- TMPL_IF NAME="mandatorycardnumber" --><span class="required">Required</span><!-- /TMPL_IF --></li>
707     <li>
708       <!-- TMPL_IF NAME="mandatorybranchcode" -->
709         <label for="branchcode" class="required">
710       <!--TMPL_ELSE-->
711         <label for="branchcode">
712       <!-- /TMPL_IF-->
713       Library: </label>
714       <!-- TMPL_VAR NAME="CGIbranch" -->
715           <!-- TMPL_IF NAME="mandatorybranchcode" --><span class="required">Required</span><!-- /TMPL_IF -->
716     </li>
717     <li>
718     <!-- TMPL_IF NAME="typeloop" -->
719         <label for="categorycode">Category: </label>
720         <select id="categorycode" name="categorycode">
721         <!-- TMPL_LOOP NAME="typeloop" -->
722                 <!-- TMPL_IF EXPR="typename eq 'C'" --><optgroup label="Child"><!-- /TMPL_IF -->
723                 <!-- TMPL_IF EXPR="typename eq 'A'" --><optgroup label="Adult"><!-- /TMPL_IF -->
724                 <!-- TMPL_IF EXPR="typename eq 'S'" --><optgroup label="Staff"><!-- /TMPL_IF -->
725                 <!-- TMPL_IF EXPR="typename eq 'I'" --><optgroup label="Organization"><!-- /TMPL_IF -->
726                 <!-- TMPL_IF EXPR="typename eq 'P'" --><optgroup label="Professional"><!-- /TMPL_IF -->
727                 <!-- TMPL_IF EXPR="typename eq 'X'" --><optgroup label="Statistical"><!-- /TMPL_IF -->
728                 <!-- TMPL_LOOP NAME="categoryloop" -->
729                                 <!-- TMPL_IF NAME="categorycodeselected" -->
730                <option value="<!-- TMPL_VAR NAME="categorycode" -->" selected="selected"><!-- TMPL_VAR NAME="categoryname" --></option>
731                                 <!-- TMPL_ELSE -->
732 <option value="<!-- TMPL_VAR NAME="categorycode" -->"><!-- TMPL_VAR NAME="categoryname" --></option>
733                                 <!-- /TMPL_IF -->
734                 <!-- /TMPL_LOOP -->
735         </optgroup>
736         <!-- /TMPL_LOOP -->
737                 </select>
738     <!-- TMPL_ELSE -->
739         <span class="problem">There is no category type to add <!--TMPL_IF Name="A"-->an Adult<!--/TMPL_IF--><!--TMPL_IF Name="C"-->a Child<!--/TMPL_IF--><!--TMPL_IF Name="I"-->an Institution<!--/TMPL_IF--><!--TMPL_IF Name="P"-->a professionnal<!--/TMPL_IF--><!--TMPL_IF Name="S"-->a Staff Member<!--/TMPL_IF-->.</span>
740               <a href="/cgi-bin/koha/admin/categorie.pl">Please create one</a>
741     <!-- /TMPL_IF -->
742     </li>
743     <li>
744       <!-- TMPL_IF NAME="mandatorysort1" -->
745         <label for="sort1" class="required">
746       <!-- TMPL_ELSE -->
747         <label for="sort1">
748       <!-- /TMPL_IF-->
749       Sort 1: </label>
750       <!--TMPL_IF NAME="CGIsort1" --> 
751         <!-- TMPL_VAR NAME="CGIsort1" -->
752       <!--TMPL_ELSE-->
753         <input  type="text" id="sort1" name="sort1" size="20"  value="<!-- TMPL_VAR NAME="sort1" -->" />
754           <!-- TMPL_IF NAME="mandatorysort1" --><span class="required">Required</span><!-- /TMPL_IF -->
755       <!-- /TMPL_IF -->   
756     </li>
757     <li>
758     <!-- TMPL_IF NAME="mandatorysort2" -->
759     <label for="sort2" class="required">
760     <!-- TMPL_ELSE -->
761     <label for="sort2">
762     <!-- /TMPL_IF-->
763     Sort 2: </label>
764     <!--TMPL_IF NAME="CGIsort2" --> 
765       <!-- TMPL_VAR NAME="CGIsort2" -->
766     <!--TMPL_ELSE-->
767       <input  type="text" id="sort2" name="sort2" size="20"  value="<!-- TMPL_VAR NAME="sort2" -->" />
768           <!-- TMPL_IF NAME="mandatorysort2" --><span class="required">Required</span><!-- /TMPL_IF -->
769     <!-- /TMPL_IF --> 
770     </li>
771         </ol>
772   </fieldset>
773         <fieldset class="rows" id="memberentry_subscription">
774         <legend>Library set-up</legend><ol>
775                 <li>
776                         <!-- TMPL_IF NAME="mandatorydateenrolled" -->
777                         <label for="dateenrolled" class="required">
778                         <!--TMPL_ELSE-->
779                         <label for="dateenrolled">
780                         <!-- /TMPL_IF-->
781                         Registration date: </label>
782                         <input type="text" id="dateenrolled" name="dateenrolled"  maxlength="10" size="10" <!-- TMPL_IF NAME="metric" -->onchange="CheckDate(document.form.dateenrolled);check_manip_date('verify');"<!-- /TMPL_IF--> value="<!-- TMPL_VAR NAME="dateenrolled" -->" />
783             <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateenrolled_button" alt="Show Calendar" />
784       <script language="JavaScript" type="text/javascript">
785         Calendar.setup(
786           {
787             inputField : "dateenrolled",
788             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
789             button : "dateenrolled_button"
790           }
791         );
792       </script>
793                 <!-- TMPL_IF NAME="mandatorydateenrolled" --><span class="required">Required</span><!-- /TMPL_IF -->
794                 <!-- TMPL_IF NAME="ERROR_dateenrolled" --><span class="required">(Error)</span><!-- /TMPL_IF -->
795                 </li>
796                 <li>
797                         <!-- TMPL_IF NAME="mandatorydateexpiry" -->
798                         <label for="dateexpiry" class="required">
799                         <!--TMPL_ELSE-->
800                         <label for="dateexpiry">
801                         <!-- /TMPL_IF-->
802                         Expiry date (leave blank for auto calc) </label>
803                         <input type="text" id="dateexpiry" name="dateexpiry" maxlength="10"  size="10" <!-- TMPL_IF NAME="metric" -->onchange="CheckDate(document.form.dateexpiry);check_manip_date('verify');"<!-- /TMPL_IF--> value="<!-- TMPL_UNLESS NAME="opadd" --><!-- TMPL_VAR NAME="dateexpiry" --><!-- /TMPL_UNLESS -->" />
804             <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateexpiry_button" alt="Show Calendar" />
805       <script language="JavaScript" type="text/javascript">
806         Calendar.setup(
807           {
808             inputField : "dateexpiry",
809             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
810             button : "dateexpiry_button"
811           }
812         );
813       </script>
814                 <!-- TMPL_IF NAME="mandatorydateexpiry" --><span class="required">Required</span><!-- /TMPL_IF -->
815                 <!-- TMPL_IF NAME="ERROR_dateexpiry" --><span class="required">(Error)</span><!-- /TMPL_IF -->
816                 </li>
817                 <li>
818                         <!-- TMPL_IF NAME="mandatoryopacnote" -->
819                                 <label for="opacnote" class="required">
820                         <!--TMPL_ELSE-->
821                                 <label for="opacnote">
822                         <!-- /TMPL_IF-->        
823                         OPAC note: </label>
824                         <textarea id="opacnote" name="opacnote" cols="55" rows="5"><!-- TMPL_VAR NAME="opacnote" --></textarea>
825                         <div class="hint">This message appears on this patron's user page in the OPAC</div>
826           <!-- TMPL_IF NAME="mandatoryopacnote" --><span class="required">Required</span><!-- /TMPL_IF -->
827                 </li>
828                 <li>
829                         <!-- TMPL_IF NAME="mandatoryborrowernotes" -->  
830                                 <label for="borrowernotes" class="required">
831                         <!--TMPL_ELSE-->
832                                 <label for="borrowernotes">
833                         <!-- /TMPL_IF-->
834                         Circulation note: </label>
835                         <textarea id="borrowernotes" name="borrowernotes" cols="55" rows="5"><!-- TMPL_VAR NAME="borrowernotes" --></textarea>
836                         <div class="hint">This message displays when checking out to this patron</div>
837           <!-- TMPL_IF NAME="mandatoryborrowernotes" --><span class="required">Required</span><!-- /TMPL_IF -->
838                 </li>
839                 </ol>
840         </fieldset>
841         <fieldset class="rows" id="memberentry_userid">
842                 <legend>OPAC login</legend><ol>
843                 <li>
844                         <!-- TMPL_IF NAME="mandatoryuserid" -->
845                         <label for="userid" class="required">
846                         <!--TMPL_ELSE-->
847                         <label for="userid">
848                         <!-- /TMPL_IF-->
849                         OPAC Login: </label>
850
851 <!-- TMPL_IF NAME="NoUpdateLogin" -->
852 <input type="text" id="userid" name="userid" size="20" disabled="disabled" value="<!-- TMPL_VAR NAME="userid" -->" />
853 <!-- TMPL_ELSE -->
854 <input type="text" id="userid" name="userid" size="20" value="<!-- TMPL_VAR NAME="userid" -->" />
855 <!-- /TMPL_IF -->
856
857           <!-- TMPL_IF NAME="mandatoryuserid" --><span class="required">Required</span><!-- /TMPL_IF -->
858                 </li>
859                 <li>
860                         <!-- TMPL_IF NAME="mandatorypassword" -->
861                         <label for="password" class="required">
862                         <!--TMPL_ELSE-->
863                         <label for="password">
864                         <!-- /TMPL_IF-->
865                         Password: </label>
866                         <!--TMPL_IF NAME="opadd"-->
867                         <!-- TMPL_IF NAME="NoUpdateLogin" -->
868                                 <input type="text" id="password" name="password" size="20"  disabled="disabled" value="<!-- TMPL_VAR NAME="password" -->" />
869 <!-- TMPL_ELSE -->
870                                 <input type="text" id="password" name="password" size="20" value="<!-- TMPL_VAR NAME="password" -->" />
871 <!-- /TMPL_IF -->
872                         <!--TMPL_ELSE-->
873                         <!--TMPL_IF NAME="password"-->
874                                 <!-- TMPL_IF NAME="NoUpdateLogin" -->
875                                         <input type="text" id="password" name="password" size="20"  disabled="disabled" value="****" />
876                                 <!-- TMPL_ELSE -->
877                                         <input type="text" id="password" name="password" size="20" value="****" />
878                                 <!-- /TMPL_IF -->
879                         <!--TMPL_ELSE-->
880                                 <!-- TMPL_IF NAME="NoUpdateLogin" -->
881                                         <input type="text" id="password" name="password" size="20"  disabled="disabled" value="" />
882                                 <!-- TMPL_ELSE -->
883                                         <input type="text" id="password" name="password" size="20" value="" />
884                                 <!-- /TMPL_IF -->
885                         <!--/TMPL_IF-->
886                         <!--/TMPL_IF-->
887           <!-- TMPL_IF NAME="mandatorypassword" --><span class="required">Required</span><!-- /TMPL_IF --><!-- TMPL_IF NAME="ERROR_short_password" --><span class="required">Password is too short</span><!-- /TMPL_IF -->
888 <!-- TMPL_IF NAME="minPasswordLength" --><div class="hint">Minimum password length: <!-- TMPL_VAR NAME="minPasswordLength" --></div><!-- /TMPL_IF -->
889                 </li></ol>
890                 </fieldset>
891                 <!--this zones are not necessary in modif mode -->
892                 <!-- TMPL_UNLESS NAME="opadd" -->
893                 <fieldset class="rows">
894                         <legend>Patron Account Flags</legend>
895                         <ol class="radio">
896                         <!-- TMPL_LOOP NAME="flagloop" -->
897                                 <li><label class="radio" for="yes<!-- TMPL_VAR name="name" -->">
898                                 <!-- TMPL_IF EXPR="key eq 'gonenoaddress'" -->Gone no Address:<!-- /TMPL_IF -->
899                                 <!-- TMPL_IF EXPR="key eq 'debarred'" -->Debarred:<!-- /TMPL_IF -->
900                                 <!-- TMPL_IF EXPR="key eq 'lost'" -->Lost Card:<!-- /TMPL_IF -->
901                 </label>
902                                 
903                                 <label for="yes<!-- TMPL_VAR NAME="name" -->">Yes </label>
904                                 <!-- TMPL_IF NAME="yes" -->
905                                 <input type="radio" id="yes<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="1" checked="checked" />
906                                 <!-- TMPL_ELSE -->
907                                 <input type="radio" id="yes<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="1" />
908                                 <!-- /TMPL_IF -->
909                                 
910                                 <label for="no<!-- TMPL_VAR NAME="name" -->">No </label>
911                                 <!-- TMPL_IF NAME="no" -->
912                                 <input type="radio" id="no<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="0" checked="checked"/>
913                                 <!-- TMPL_ELSE -->
914                                 <input type="radio" id="no<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="0" />
915                                 <!-- /TMPL_IF -->
916
917 </li>
918                         <!-- /TMPL_LOOP -->
919                         </ol>
920                         </fieldset>
921                 <!-- /TMPL_UNLESS -->   
922
923 <!-- /TMPL_IF -->
924
925 <!-- TMPL_IF NAME="step_4" --><!-- TMPL_IF NAME="ExtendedPatronAttributes" --><!-- TMPL_UNLESS NAME="no_patron_attribute_types" -->
926   <fieldset class="rows" id="memberentry_patron_attributes">
927     <input type="hidden" name="setting_extended_patron_attributes" value="1" />
928     <legend>Additional attributes and identifiers</legend>
929     <table>
930         <tr>
931             <th>Type</th>
932             <th colspan="2">Value</th>
933         </tr>
934         <!-- TMPL_LOOP NAME='patron_attributes' -->
935         <tr>
936             <td><!-- TMPL_VAR NAME="code" --> (<!-- TMPL_VAR NAME="description" -->)
937             </td>
938             <td>
939                 <input type="hidden" id="<!-- TMPL_VAR NAME="form_id" -->_code" name="<!-- TMPL_VAR NAME="form_id" -->_code"
940                        value="<!-- TMPL_VAR NAME="code" ESCAPE="HTML" -->" />
941                 <!-- TMPL_IF NAME="use_dropdown" -->
942                     <select id="<!-- TMPL_VAR NAME="form_id" -->" name="<!-- TMPL_VAR NAME="form_id" -->">
943                         <option value="" />
944                         <!-- TMPL_LOOP NAME="auth_val_loop" -->
945                             <!-- TMPL_IF NAME="selected" -->
946                                 <option value="<!-- TMPL_VAR NAME="authorised_value" -->" selected="selected">
947                                     <!-- TMPL_VAR NAME="lib" -->
948                                 </option>
949                             <!-- TMPL_ELSE -->
950                                 <option value="<!-- TMPL_VAR NAME="authorised_value" -->" >
951                                     <!-- TMPL_VAR NAME="lib" -->
952                                 </option>
953                             <!-- /TMPL_IF -->
954                         <!-- /TMPL_LOOP -->
955                     </select>
956                 <!-- TMPL_ELSE -->
957                     <input type="text" maxlength="64" value="<!-- TMPL_VAR NAME="value" -->"
958                            id="<!-- TMPL_VAR NAME="form_id" -->" name="<!-- TMPL_VAR NAME="form_id" -->" />
959                 <!-- /TMPL_IF -->
960                 <!-- TMPL_IF NAME="password_allowed" -->
961                     (Password: <input type="password" maxlength="64" value="<!-- TMPL_VAR NAME="password" -->"
962                            id="<!-- TMPL_VAR NAME="form_id" -->_password" name="<!-- TMPL_VAR NAME="form_id" -->_password" />)
963                 <!-- /TMPL_IF -->
964             </td>
965             <td>
966                 <a href="#" onclick="clear_entry(this); return false;">Clear</a>
967                 <!-- TMPL_IF NAME="repeatable" -->
968                 <a href="#" onclick="clone_entry(this); return false;">New</a>
969                 <!-- /TMPL_IF -->
970             </td>
971         </tr>
972         <!-- /TMPL_LOOP -->
973     </table>
974   </fieldset>
975 <!-- /TMPL_IF--><!-- /TMPL_IF --><!-- /TMPL_UNLESS -->
976
977 <!-- TMPL_IF NAME="step_5" --><!-- TMPL_IF NAME="EnhancedMessagingPreferences" -->
978   <fieldset class="rows" id="memberentry_messaging_prefs">
979     <!-- TMPL_IF NAME="opadd" -->
980     <!-- handle changing prefs if creating new patron and changing
981          the patron category
982     -->
983     <script language="javascript" type="text/javascript">//<![CDATA[
984        $(document).ready(function(){
985             var message_prefs_dirty = false;
986             $('#memberentry_messaging_prefs > *').change(function() {
987                 message_prefs_dirty = true;
988             });
989             $('#categorycode').change(function() {
990                 var categorycode = $(this).val();
991                 if (message_prefs_dirty) {
992                     if (!confirm('Change messaging preferences to default for this category?')) {
993                         return;
994                     }
995                 }
996                 $.getJSON('/cgi-bin/koha/members/default_messageprefs.pl?categorycode=' + categorycode,
997                     function(data) {
998                         $.each(data.messaging_preferences, function(i, item) {
999                             var attrid = item.message_attribute_id;
1000                             var transports = ['email', 'rss', 'sms'];
1001                             $.each(transports, function(j, transport) {
1002                                 if (item['transport-' + transport] != ' ') {
1003                                     $('#' + transport + attrid).attr('checked', item['transport-' + transport]);
1004                                 } else {
1005                                     $('#' + transport + attrid).removeAttr('checked');
1006                                 }
1007                             });
1008                             if (item.digest && item.digest != ' ') {
1009                                 $('#digest' + attrid).attr('checked', item.digest);
1010                             } else {
1011                                 $('#digest' + attrid).removeAttr('checked');
1012                             }
1013                             if (item.takes_days == '1') {
1014                                 $('[name=' + attrid + '-DAYS]').val('' + item.days_in_advance);
1015                             }
1016                         });
1017                         message_prefs_dirty = false;
1018                     }
1019                 );
1020             });
1021         });
1022     //]]>
1023     </script>
1024     <!-- /TMPL_IF -->
1025     <input type="hidden" name="setting_messaging_prefs" value="1" />
1026     <legend>Patron messaging preferences</legend>
1027     <!-- TMPL_INCLUDE NAME="messaging-preference-form.inc" -->
1028     <!-- TMPL_IF NAME="SMSSendDriver" -->
1029         <p><label for="SMSnumber">SMS number:</label> 
1030           <input type="text" id="SMSnumber" name="SMSnumber" value="<!-- TMPL_VAR NAME="SMSnumber"  -->" />
1031         </p>
1032     <!-- /TMPL_IF -->
1033   </fieldset>
1034 <!-- /TMPL_IF --> <!-- /TMPL_IF -->
1035
1036     <fieldset class="action">
1037         <input type="submit" name="save" onclick="return check_form_borrowers();" value="Save" />
1038       <!-- TMPL_IF NAME="opadd" -->
1039        <a class="cancel" href="/cgi-bin/koha/members/member.pl">Cancel</a>
1040            <!-- TMPL_ELSE -->
1041           <a class="cancel" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->">Cancel</a>
1042            <!-- /TMPL_IF -->
1043     </fieldset>
1044 </form>
1045   
1046 </div>
1047 </div>
1048
1049 <!-- TMPL_UNLESS NAME="opadd" --><div class="yui-b">
1050 <!-- TMPL_INCLUDE NAME="members-menu.inc" -->
1051 </div><!-- /TMPL_UNLESS -->
1052 </div>
1053 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->