]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/register.tt2
TPAC: Make corner image link to server root
[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 => 'stgma', name = 'street1', label => l('Street Address')},
31     {class => 'stgma', name = 'street2', label => l('Street Address (2)')},
32     {class => 'stgma', name = 'city', label => l('City')},
33     {class => 'stgma', name = 'county', label => l('County')},
34     {class => 'stgma', name = 'state', label => l('State')},
35     {class => 'stgma', name = 'post_code', label => l('Zip Code')},
36     {class => 'stgu',  name = 'dob', label => l('Date of Birth')},
37     {class => 'stgu',  name = 'day_phone', label => l('Phone Number')},
38     {class => 'stgu',  name = 'email', label => l('Email Address')}
39     {class => 'stgu',  name = 'usrname', label => l('Requested Username')}
40 ];
41
42 # The dojo date widget in the patron edit UI only accepts default 
43 # values in ISO8601 format.  It will not accept locale-shaped dates.
44 IF !ctx.register.settings.stgu.dob.example;
45     ctx.register.settings.stgu.dob.example = l('YYYY-MM-DD');
46 END;
47
48 %]
49
50 <div id="content-wrapper">
51     <div id="main-content-register">
52         <div class="common-full-pad"></div>
53         <h1>[% l('Request a Library Card')%]</h1>
54         <hr/>
55
56         [% IF ctx.register.success %]
57             <h3>[% l('Registration successful!') %]<h3>
58             <h4>[% l('Please see library staff to complete your registration.') %]</h4>
59
60             [% IF ctx.register.username_taken %]
61             <p>
62                 [% |l %]
63                 Note: The selected username may be in use by another patron.  
64                 You may select another username when finalizing your 
65                 registration or in the online catalog.
66                 [% END %]
67             </p>
68             [% END %]
69
70             <br/>
71             <p>
72                 <a href="[% ctx.opac_root %]/home" 
73                     class="opac-button">[% l('Return to the Catalog') %]</a>
74             </p>
75
76         [% ELSIF ctx.register.error %]
77             <h3>[% l('A registration error has occurred') %]</h3>
78             <h4>[% l('Please see library staff to complete your registration.') %]</h4>
79
80             <br/>
81             <p>
82                 <a href="[% ctx.opac_root %]/home" 
83                     class="opac-button">[% l('Return to the Catalog') %]</a>
84             </p>
85
86         [% ELSE %]
87
88         [% IF ctx.user %]
89             <!-- if the user is logged in, make it 
90                 clear we are tracking the requestor -->
91             <h4>[% l('New account requested by [_1] [_2] [_3] [_4] [_5]',
92                     ctx.user.prefix, ctx.user.first_given_name,
93                     ctx.user.second_given_name, ctx.user.family_name,
94                     ctx.user.suffix
95                 ) | html %]</h4>
96         [% END %]
97
98         <form method='POST'>
99             <table>
100                 <tr>
101                     <td>
102                         <label for='stgu.home_ou'>[% l('Home Library') %]</label>
103                     </td>
104                     <td>[% INCLUDE build_org_selector 
105                             name='stgu.home_ou' 
106                             value=value || ctx_org
107                             can_have_users_only=1
108                             valid_org_list=ctx.register.valid_orgs
109                         %]
110                     </td>
111                     <td>
112                         [% IF ctx.register.invalid.bad_home_ou %]
113                         <span class='patron-reg-invalid'>
114                             [% l('Please select a valid library') %]
115                         </span>
116                         [% END %]
117                 </tr>
118 [%
119 # <=== shifting code left for readability
120
121 # render the table row for each of the register fields
122 FOR field_def IN register_fields;
123     fclass = field_def.class;
124     fname = field_def.name;
125     field_path = fclass _ "." _ fname;
126
127     show = ctx.register.settings.$fclass.$fname.show;
128     require = ctx.register.settings.$fclass.$fname.require;
129     example = ctx.register.settings.$fclass.$fname.example;
130     value = ctx.register.values.$fclass.$fname;
131
132     invalid_require = ctx.register.invalid.$fclass.$fname.require;
133     invalid_regex = ctx.register.invalid.$fclass.$fname.regex;
134
135     NEXT UNLESS require OR show;
136 %]
137 <tr>
138     <td>
139         <label for='[% field_path %]'>[% field_def.label | html %]</label>
140     </td>
141     <td>
142         <input 
143             type='text' 
144             name='[% field_path %]'
145             value='[% value || CGI.param(field_path) | html %]'/>
146         [% IF require %]
147         <span class='patron-reg-invalid'>*</span>
148         [% END %]
149     </td>
150     <td>
151
152     <!-- display errors and example text -->
153
154     [% IF invalid_require %]
155         <span class='patron-reg-invalid'>
156             [% l('This field is required') %]
157         </span>
158     [% ELSIF invalid_regex %]
159         <span class='patron-reg-invalid'>
160             [% l('The value entered does not have the correct format') %]
161         </span>
162     [% END %]
163     [% IF example %]
164         <span class='patron-reg-extra'>
165             [% l('(Example: [_1])', example) %]
166         </span>
167     [% END %]
168
169     </td>
170 </tr>
171 [% END %]
172 <!-- ====> shifting the code back to the right for context -->
173                     <tr>
174                         <td colspan='3'>
175                             <a href="[% ctx.opac_root %]/home" 
176                                 class="opac-button">[% l('Go Back') %]</a>
177                             <input type="submit" 
178                                 value="[% l('Submit Registration') %]" 
179                                 class="opac-button" />
180                         </td>
181                     </tr>
182                 </table>
183             </form>
184             [% END %]
185             <div class="common-full-pad"></div> 
186         </div>
187     </div>
188 [%- END %]