]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/register.tt2
LP#1776020 Patron preferred name & name keywords
[working/Evergreen.git] / Open-ILS / src / templates / opac / register.tt2
1 [%- PROCESS "opac/parts/header.tt2";
2     PROCESS "opac/parts/org_selector.tt2";
3     WRAPPER "opac/parts/base.tt2";
4     INCLUDE "opac/parts/topnav.tt2";
5     ctx.page_title = l("Request Library Card");
6
7 # for privacy, reload the page after (default) 5 minutes
8 refresh_time = ctx.register.settings.refresh_timeout || 300; 
9 ctx.refresh = refresh_time _ '; ' _ ctx.opac_root _ '/home';
10
11 # some useful variables and MACROs for display, 
12 # field validation, and added info display
13
14 ctx_org = ctx.physical_loc || ctx.search_ou || ctx.aou_tree.id;
15
16 # list of the registration fields to (potentially) 
17 # display in the order they should be shown
18
19 # post_code is the only field below that is required in the database and
20 # post_code is only required if an address is created.
21 # To prevent any of these fields from showing locally, regardless org unit
22 # settings, simply remove the fields from this list.  In the case of 
23 # addresses, if all address fields are removed, no attempt at creating
24 # an address will be made (and post_code will no longer be required).
25
26 register_fields = [
27     {class => 'stgu',  name = 'first_given_name', label => l('First Name')},
28     {class => 'stgu',  name = 'second_given_name', label => l('Middle Name')},
29     {class => 'stgu',  name = 'family_name', label => l('Last Name')},
30     {class => 'stgu',  name = 'pref_first_given_name', label => l('Preferred First Name')},
31     {class => 'stgu',  name = 'pref_second_given_name', label => l('Preferred Middle Name')},
32     {class => 'stgu',  name = 'pref_family_name', label => l('Preferred Last Name')},
33     {class => 'stgma', name = 'street1', label => l('Street Address')},
34     {class => 'stgma', name = 'street2', label => l('Street Address (2)')},
35     {class => 'stgma', name = 'city', label => l('City')},
36     {class => 'stgma', name = 'county', label => l('County')},
37     {class => 'stgma', name = 'state', label => l('State')},
38     {class => 'stgma', name = 'post_code', label => l('Zip Code')},
39     {class => 'stgu',  name = 'dob', label => l('Date of Birth')},
40     {class => 'stgu',  name = 'day_phone', label => l('Phone Number')},
41     {class => 'stgu',  name = 'email', label => l('Email Address')}
42     {class => 'stgu',  name = 'usrname', label => l('Requested Username')}
43 ];
44
45 # The dojo date widget in the patron edit UI only accepts default 
46 # values in ISO8601 format.  It will not accept locale-shaped dates.
47 IF !ctx.register.settings.stgu.dob.example;
48     ctx.register.settings.stgu.dob.example = l('YYYY-MM-DD or YYYY/MM/DD');
49 END;
50
51 %]
52
53 <h2 class="sr-only">[% l('Account Registration') %]</h2>
54 <div id="content-wrapper">
55     <div id="main-content-register">
56         <div class="common-full-pad"></div>
57         <h1>[% l('Request a Library Card')%]</h1>
58         <hr/>
59
60         [% IF ctx.register.success %]
61             <h3>[% l('Registration successful!') %]<h3>
62             <h4>[% l('Please see library staff to complete your registration.') %]</h4>
63
64             [% IF ctx.register.username_taken %]
65             <p>
66                 [% |l %]
67                 Note: The selected username may be in use by another patron.  
68                 You may select another username when finalizing your 
69                 registration or in the online catalog.
70                 [% END %]
71             </p>
72             [% END %]
73
74             <br/>
75             <p>
76                 <a href="[% ctx.opac_root %]/home" 
77                     class="opac-button">[% l('Return to the Catalog') %]</a>
78             </p>
79
80         [% ELSIF ctx.register.error %]
81             <h3>[% l('A registration error has occurred') %]</h3>
82             <h4>[% l('Please see library staff to complete your registration.') %]</h4>
83
84             <br/>
85             <p>
86                 <a href="[% ctx.opac_root %]/home" 
87                     class="opac-button">[% l('Return to the Catalog') %]</a>
88             </p>
89
90         [% ELSE %]
91
92         [% IF ctx.user %]
93             <!-- if the user is logged in, make it 
94                 clear we are tracking the requestor -->
95             <h4>[% l('New account requested by [_1] [_2] [_3] [_4] [_5]',
96                     ctx.user.prefix, ctx.user.first_given_name,
97                     ctx.user.second_given_name, ctx.user.family_name,
98                     ctx.user.suffix
99                 ) | html %]</h4>
100         [% END %]
101
102         <form method='POST' onSubmit="return dobValidate(document.getElementById('stgu.dob'))">
103             <table>
104                 <tr>
105                     <td>
106                         <label for='stgu.home_ou'>[% l('Home Library') %]</label>
107                     </td>
108                     <td>[% INCLUDE build_org_selector 
109                             name='stgu.home_ou' 
110                             value=value || ctx_org
111                             can_have_users_only=1
112                             valid_org_list=ctx.register.valid_orgs
113                         %]
114                     </td>
115                     <td>
116                         [% IF ctx.register.invalid.bad_home_ou %]
117                         <span class='patron-reg-invalid'>
118                             [% l('Please select a valid library') %]
119                         </span>
120                         [% END %]
121                 </tr>
122 [%
123 # <=== shifting code left for readability
124
125 # render the table row for each of the register fields
126 FOR field_def IN register_fields;
127     fclass = field_def.class;
128     fname = field_def.name;
129     orig_name = fname;
130
131     field_path = fclass _ "." _ fname;
132
133     IF fname.match('^pref_');
134         # Preferred name fields adopt most visibility, etc.
135         # settings from the primary name counterparts.
136         fname = fname.remove('^pref_');
137     END;
138
139     show = ctx.register.settings.$fclass.$fname.show;
140     require = ctx.register.settings.$fclass.$fname.require;
141     example = ctx.register.settings.$fclass.$fname.example;
142     value = ctx.register.values.$fclass.$fname;
143
144     invalid_require = ctx.register.invalid.$fclass.$fname.require;
145     invalid_regex = ctx.register.invalid.$fclass.$fname.regex;
146
147     IF orig_name.match('^pref_');
148         show = show || require;
149         require = 0; # pref name values never required
150     END;
151
152     NEXT UNLESS require OR show;
153 %]
154 <tr>
155     <td>
156         <label for='[% field_path %]'>[% field_def.label | html %]</label>
157     </td>
158     <td>
159         <input 
160             type='text'
161             id='[% field_path %]'
162             name='[% field_path %]'
163             value='[% value || CGI.param(field_path) | html %]'/>
164         [% IF require %]
165         <span class='patron-reg-invalid'>*</span>
166         [% END %]
167     </td>
168     <td>
169
170     <!-- display errors and example text -->
171
172     [% IF invalid_require %]
173         <span class='patron-reg-invalid'>
174             [% l('This field is required') %]
175         </span>
176     [% ELSIF invalid_regex %]
177         <span class='patron-reg-invalid'>
178             [% l('The value entered does not have the correct format') %]
179         </span>
180     [% END %]
181     [% IF example %]
182         <span class='patron-reg-extra'>
183             [% l('(Example: [_1])', example) %]
184         </span>
185     [% END %]
186
187     </td>
188 </tr>
189 [% END %]
190 <!-- ====> shifting the code back to the right for context -->
191                     [% IF ctx.register.opt_in_settings.size > 0 %]
192                         [% FOR optin IN ctx.register.opt_in_settings %]
193                         <tr>
194                             <td><label for="stgs.[% optin.name | uri %]'">[% optin.label | html %]</label></td>
195                             <td>
196                                 <input type='checkbox'
197                                     name='stgs.[% optin.name | uri %]'
198                                     id='stgs.[% optin.name | uri %]'
199                                     title="[% optin.label | html %]"
200                                 ></input>
201                             </td>
202                             <td><!-- display errors and example text --></td>
203                         </tr>
204                         [% END %]
205                     [% END %]
206                     <tr>
207                         <td colspan='3'>
208                             <a href="[% ctx.opac_root %]/home" 
209                                 class="opac-button">[% l('Go Back') %]</a>
210                             <input type="submit" 
211                                 value="[% l('Submit Registration') %]" 
212                                 class="opac-button" />
213                         </td>
214                     </tr>
215                 </table>
216             </form>
217             [% END %]
218             <div class="common-full-pad"></div> 
219         </div>
220     </div>
221 [%- END %]