]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/offline-interface.tt2
LP#1768947 Disable offline download button, improve logging
[working/Evergreen.git] / Open-ILS / src / templates / staff / offline-interface.tt2
1 [%
2   WRAPPER "staff/base.tt2";
3   ctx.page_title = l("Offline"); 
4   ctx.page_app = "egOffline";
5 %]
6
7
8 <script type="text/ng-template" id="offline-template">
9
10 <div class="row">
11   <div class="col-md-12">
12     <div class="input-group">
13       <div class="input-group-addon"><b>[% l('Workstation') %]</b></div>
14       <div class="input-group-addon">
15         <select class="form-control" required
16           ng-model="workstation"
17           ng-options="ws.id as ws.name for ws in workstations"></select>
18       </div>
19       <div class="input-group-addon"><b>[% l('Working location') %]</b></div>
20       <div class="input-group-addon">
21         <eg-org-selector sticky-setting="eg.org.offline_location" selected="org"></eg-org-selector>
22       </div>
23       <div class="input-group-addon">
24         <button
25           class="btn btn-primary"
26           ng-disabled="all_xact.length == 0 || active_tab == 'register'"
27           ng-click="save()">
28             [% l('Save Transactions') %]
29         </button>
30         <button
31           class="btn btn-default"
32           ng-disabled="!printed"
33           ng-click="reprintLast()">
34             [% l('Reprint Last Receipt') %]
35         </button>
36         <button
37           class="btn btn-default"
38           ng-disabled="buildingBlockList"
39           ng-if="logged_in"
40           ng-click="downloadBlockList()">
41             [% l('Download block list') %]
42         </button>
43         <button
44           class="btn btn-default"
45           ng-disabled="pending_xacts.length == 0"
46           eg-line-exporter
47           ng-if="!logged_in"
48           default-file-name="pending.xacts"
49           json-array="pending_xacts"
50         >[% l('Export Transactions') %]</button>
51       </div>
52     </div>
53   </div>
54 </div>
55
56 <div class="row col-md-offset-3 col-md-6 pad-vert">
57   <div ng-show="logged_in && active_tab != 'session'" class="alert alert-danger">
58     <h2>[% l('Warning') %]</h2>
59     [% l('You are about to enter offline mode. If you proceed, you will be logged out.') %]
60     <br/>
61     <br/>
62     <button class="btn btn-danger" ng-click="logout()">[% l('Proceed') %]</button>
63   </div>
64 </div>
65
66 <div class="row col-md-12 pad-vert">
67   <div class="col-md-12">
68     <uib-tabset active="active_tab">
69       <!-- note that non-numeric index values must be enclosed in single-quotes,
70            otherwise selecting the active table won't work cleanly -->
71       <uib-tab ng-show="logged_in" index="'session'" heading="[% l('Session Management') %]">
72         <div class="col-md-12" ng-controller="OfflineSessionCtrl">
73           <uib-tabset active="active_session_tab">
74             <uib-tab index="'pending'" heading="[% l('Pending Transactions') %]">
75               <div class="row">
76                 <div class="col-md-12 container">
77                   <button
78                     class="btn btn-default"
79                     ng-disabled="pending_xacts.length == 0"
80                     eg-line-exporter
81                     default-file-name="pending.xacts"
82                     json-array="pending_xacts"
83                   >[% l('Export Transactions') %]</button>
84                   <div class="btn-group">
85                     <span class="btn btn-default btn-file">
86                       [% l('Import Transactions') %]
87                       <input type="file" eg-file-reader container="imported_pending_xacts.data">
88                     </span>
89                   </div>
90                 <button class="btn btn-warning pull-right" ng-click="clear_pending()">[% l('Clear Transactions') %]</button>
91                 </div>
92               </div>
93               <div class="row">
94                 <div class="col-md-12 container">
95                   <table class="table">
96                     <thead>
97                       <tr>
98                         <th>[% l('Type') %]</th>
99                         <th>[% l('Timestamp') %]</th>
100                         <th>[% l('Patron Barcode') %]</th>
101                         <th>[% l('Item Barcode') %]</th>
102                         <th>[% l('Non-cataloged Type') %]</th>
103                         <th>[% l('Checkout Date') %]</th>
104                         <th>[% l('Due Date') %]</th>
105                         <th>[% l('Checkin Date') %]</th>
106                         <th>[% l('First Name') %]</th>
107                         <th>[% l('Last Name') %]</th>
108                       </tr>
109                     </thead>
110                     <tbody>
111                       <tr ng-repeat="xact in pending_xacts track by $index">
112                         <td>{{xact.type}}</td>
113                         <td>{{createDate(xact.timestamp, true) | date:'short'}}</td>
114                         <td>{{xact.patron_barcode || xact.user.card.barcode}}</td>
115                         <td>{{xact.barcode}}</td>
116                         <td>{{lookupNoncatTypeName(xact.noncat_type)}}</td>
117                         <td>{{createDate(xact.checkout_time) | date:'short'}}</td>
118                         <td>{{createDate(xact.due_date) | date:'shortDate'}}</td>
119                         <td>{{createDate(xact.backdate) | date:'shortDate'}}</td>
120                         <td>{{xact.user.first_given_name}}</td>
121                         <td>{{xact.user.family_name}}</td>
122                       </tr>
123                     </tbody>
124                   </table>
125                 </div>
126               </div>
127             </uib-tab>
128             <uib-tab index="'offline_sessions'" heading="[% l('Offline Sessions') %]">
129               <div class="row">
130                 <div class="col-md-12">
131                   <button
132                     class="btn btn-primary"
133                     ng-disabled="!logged_in"
134                     ng-click="createSession()">[% l('Create Session') %]</button>
135                   <button
136                     class="btn btn-default pull-right"
137                     ng-disabled="!logged_in"
138                     ng-click="refreshSessions()">[% l('Refresh') %]</button>
139                 </div>
140               </div>
141               <div class="row">
142                 <div class="col-md-12"><h2>[% l('Session List') %]</h2></div>
143               </div>
144               <div class="row">
145                 <div class="col-md-12">
146                   <table class="table" ts-wrapper>
147                     <thead>
148                       <tr>
149                         <th ts-criteria="org">[% l('Organization') %]</th>
150                         <th ts-criteria="creator">[% l('Created By') %]</th>
151                         <th ts-criteria="description">[% l('Description') %]</th>
152                         <th ts-criteria="create_time|parseInt" ts-default="descending">[% l('Date Created') %]</th>
153                         <th>[% l('Upload Count') %]</th>
154                         <th>[% l('Transactions Processed') %]</th>
155                         <th ts-criteria="end_time|parseInt">[% l('Date Completed') %]</th>
156                         <th></th>
157                       </tr>
158                     </thead>
159                     <tbody>
160                       <tr ts-repeat
161                         ng-repeat="ses in sessions track by $index"
162                         ng-click="setSession(ses, $index)"
163                         ng-class="{'bg-info':current_session_index==$index}"
164                       >
165                         <td>{{ses.org}}</td>
166                         <td>{{ses.creator}}</td>
167                         <td>{{ses.description}}</td>
168                         <td>{{createDate(ses.create_time, true) | date:'short'}}</td>
169                         <td>{{ses.total}}</td>
170                         <td>{{ses.num_complete}}</td>
171                         <td>{{createDate(ses.end_time, true) | date:'short'}}</td>
172                         <td>
173                           <button
174                             class="btn btn-info btn-xs"
175                             ng-disabled="!logged_in || pending_xacts.length == 0 || ses.end_time"
176                             ng-click="uploadPending(ses, $index)"
177                           >[% l('Upload') %]</button>
178                           <button
179                             class="btn btn-warning btn-xs"
180                             ng-disabled="!logged_in || ses.total == 0 || ses.end_time"
181                             ng-click="processSession(ses, $index)"
182                           >[% l('Process') %]</button>
183                         </td>
184                       </tr>
185                     </tbody>
186                   </table>
187                 </div>
188               </div>
189               <div class="row">
190                     <div class="col-md-12"><hr/></div>
191               </div>
192               <div class="row">
193                     <div class="col-md-12"><h2>[% l('Exception List') %]</h2></div>
194               </div>
195               <div class="row">
196                 <div class="col-md-12">
197                   <table class="table">
198                     <thead>
199                       <tr>
200                         <th>[% l('Workstation') %]</th>
201                         <th>[% l('Type') %]</th>
202                         <th>[% l('Timestamp') %]</th>
203                         <th>[% l('Event Name') %]</th>
204                         <th>[% l('Patron Barcode') %]</th>
205                         <th>[% l('Item Barcode') %]</th>
206                         <th>[% l('Non-cataloged Type') %]</th>
207                         <th>[% l('Checkout Date') %]</th>
208                         <th>[% l('Due Date') %]</th>
209                         <th>[% l('Checkin Date') %]</th>
210                         <th></th>
211                       </tr>
212                     </thead>
213                     <tbody>
214                       <tr ng-repeat="xact in current_session.exceptions track by $index">
215                         <td>{{xact.command._workstation}}</td>
216                         <td>{{xact.command.type}}</td>
217                         <td>{{createDate(xact.command.timestamp, true) | date:'short'}}</td>
218                         <td>{{xact.event.textcode}}</td>
219                         <td>{{xact.command.patron_barcode || xact.command.user.card.barcode}}</td>
220                         <td>{{xact.command.barcode}}</td>
221                         <td>{{lookupNoncatTypeName(xact.command.noncat_type)}}</td>
222                         <td>{{createDate(xact.command.checkout_time) | date:'short'}}</td>
223                         <td>{{createDate(xact.command.due_date) | date:'shortDate'}}</td>
224                         <td>{{createDate(xact.command.backdate) | date:'shortDate'}}</td>
225                         <td>
226                           <button
227                             class="btn btn-info btn-xs"
228                             ng-disabled="!logged_in || !xact.command.barcode"
229                             ng-click="retrieveItem(xact.command.barcode)">[% l('Item') %]</button>
230                           <button
231                             class="btn btn-info btn-xs"
232                             ng-disabled="!logged_in || (!xact.command.patron_barcode && xact.command.user.card.barcode)"
233                             ng-click="retrievePatron(xact.command.patron_barcode)">[% l('Patron') %]</button>
234                           <button
235                             class="btn btn-info btn-xs"
236                             ng-disabled="!logged_in"
237                             ng-click="retrieveDetails(xact)">[% l('Debug') %]</button>
238                         </td>
239                       </tr>
240                     </tbody>
241                   </table>
242                 </div>
243               </div>
244             </uib-tab>
245           </uib-tabset>
246         </div>
247       </uib-tab>
248       <uib-tab index="'checkout'" heading="[% l('Checkout') %]">
249
250         <div class="row">
251
252           <!-- left-hand side -->
253           <div class="col-md-6" style="border-right:solid 1px;">
254             <div class="row">
255               <div class="col-md-1"></div>
256               <div class="col-md-4">
257                 [% l('Due Date:') %]
258               </div>
259               <div class="col-md-4">
260                 <eg-date-input id="co_duedate" ng-model="shared.due_date" out-of-range="shared.outOfRange" min-date="minDate"></eg-date-input>
261               </div>
262               <div class="col-md-3">
263                 <select class="form-control" ng-model="shared.due_date_offset" ng-change="resetDueDate()">
264                   <option value="">[% l('No Offset') %]</option>
265                   <option value="3">[% l('Today + 3 days') %]</option>
266                   <option value="7">[% l('Today + 7 days') %]</option>
267                   <option value="14">[% l('Today + 14 days') %]</option>
268                   <option value="30">[% l('Today + 30 days') %]</option>
269                 </select>
270               </div>
271             </div>
272
273             <div class="row pad-vert">
274               <div class="col-md-1"></div>
275               <div class="col-md-4">
276                 [% l('Patron barcode:') %]
277               </div>
278               <div class="col-md-7">
279                 <input class="form-control" type="text" ng-model="checkout.patron_barcode" next-on-enter="co_barcode"/>
280               </div>
281             </div>
282
283             <div class="row pad-vert">
284               <div class="col-md-1">
285                 <input type="radio" ng-model="barcode_type" value="barcode" id="bc_radio"/>
286               </div>
287               <div class="col-md-4">
288                 <label style="font-weight:normal !important;" for="bc_radio">[% l('Item Barcode:') %]</label>
289               </div>
290               <div class="col-md-7">
291                 <input id="co_barcode"
292                     class="form-control"
293                     ng-init="barcode_type = 'barcode'"
294                     ng-disabled="barcode_type != 'barcode'"
295                     type="text"
296                     ng-model="checkout.barcode"
297                     eg-enter="!notEnough('checkout') && add('checkout')"
298                 />
299               </div>
300             </div>
301
302             <div class="row">
303               <div class="col-md-1">
304                 <input type="radio" ng-model="barcode_type" value="noncat" id="nc_radio"/>
305               </div>
306               <div class="col-md-4">
307                 <label style="font-weight:normal !important;" for="nc_radio">[% l('Non-cataloged Type:') %]</label>
308               </div>
309               <div class="col-md-5">
310                 <select
311                     class="form-control"
312                     ng-disabled="barcode_type != 'noncat'"
313                     ng-options="nct.id() as nct.name() for nct in noncats"
314                     ng-model="checkout.noncat_type"
315                 >
316                   <option value="">[% l('Select Non-cataloged Type') %]</option>
317                 </select>
318               </div>
319               <div class="col-md-2">
320                 <input
321                     class="form-control"
322                     ng-disabled="barcode_type != 'noncat'"
323                     type="number"
324                     min="1"
325                     max="100"
326                     ng-model="checkout.noncat_count"
327                 />
328               </div>
329             </div>
330
331             <div class="row pad-vert">
332               <div class="col-md-2">
333                 <button class="btn btn-warning" ng-click="clear('checkout')">[% l('Clear') %]</button>
334               </div>
335               <div class="col-md-4">
336                 <input id="do_check_co" type="checkbox" ng-model="strict_barcode" ng-click="changeCheck()"></input>
337                 <label for="do_check_co">[% l('Strict Barcode') %]</label>
338               </div>
339               <div class="col-md-6">
340                 <input id="do_print_co" type="checkbox" ng-model="do_print" ng-click="changePrint()"></input>
341                 <label for="do_print_co">[% l('Print receipt') %]</label>
342                 <button class="btn btn-primary pull-right" ng-disabled="notEnough('checkout')" ng-click="add('checkout','co_barcode')">[% l('Checkout') %]</button>
343               </div>
344             </div>
345
346           </div>
347
348           <!-- right-hand side -->
349           <div class="col-md-6 container">
350             <table class="table">
351               <thead>
352                 <tr>
353                   <th>[% l('Patron barcode') %]</th>
354                   <th>[% l('Item barcode') %]</th>
355                   <th>[% l('Due date') %]</th>
356                 </tr>
357               </thead>
358               <tbody>
359                 <tr ng-repeat="xact in xact_page.checkout track by $index">
360                   <td>{{xact.patron_barcode}}</td>
361                   <td>{{xact.barcode}}</td>
362                   <td>{{xact.due_date | date:'shortDate'}}</td>
363                 </tr>
364               </tbody>
365             </table>
366           </div>
367
368         </div>
369
370       </uib-tab>
371       <uib-tab index="'renew'" heading="[% l('Renew') %]">
372
373         <div class="row">
374
375           <!-- left-hand side -->
376           <div class="col-md-6" style="border-right:solid 1px;">
377             <div class="row">
378               <div class="col-md-1"></div>
379               <div class="col-md-4">
380                 [% l('Due Date:') %]
381               </div>
382               <div class="col-md-4">
383                 <eg-date-input ng-model="shared.due_date" out-of-range="shared.outOfRange" min-date="minDate"></eg-date-input>
384               </div>
385               <div class="col-md-3">
386                 <select class="form-control" ng-model="shared.due_date_offset" ng-change="resetDueDate()">
387                   <option value="">[% l('No Offset') %]</option>
388                   <option value="3">[% l('Today + 3 days') %]</option>
389                   <option value="7">[% l('Today + 7 days') %]</option>
390                   <option value="14">[% l('Today + 14 days') %]</option>
391                   <option value="30">[% l('Today + 30 days') %]</option>
392                 </select>
393               </div>
394             </div>
395
396             <div class="row pad-vert">
397               <div class="col-md-1"></div>
398               <div class="col-md-4">
399                 [% l('Patron barcode:') %]
400               </div>
401               <div class="col-md-7">
402                 <input class="form-control" type="text" ng-model="renew.patron_barcode" next-on-enter="re_barcode"/>
403               </div>
404             </div>
405
406             <div class="row pad-vert">
407               <div class="col-md-1"></div>
408               <div class="col-md-4">
409                 [% l('Item Barcode:') %]
410               </div>
411               <div class="col-md-7">
412                 <input class="form-control" type="text" ng-model="renew.barcode" id="re_barcode" eg-enter="!notEnough('renew') && add('renew')"/>
413               </div>
414             </div>
415
416             <div class="row pad-vert">
417               <div class="col-md-2">
418                 <button class="btn btn-warning" ng-click="clear('renew')">[% l('Clear') %]</button>
419               </div>
420               <div class="col-md-4">
421                 <input id="do_check_r" type="checkbox" ng-model="strict_barcode" ng-click="changeCheck()"></input>
422                 <label for="do_check_r">[% l('Strict Barcode') %]</label>
423               </div>
424               <div class="col-md-6">
425                 <input id="do_print_r" type="checkbox" ng-model="do_print" ng-click="changePrint()"></input>
426                 <label for="do_print_r">[% l('Print receipt') %]</label>
427                 <button class="btn btn-primary pull-right" ng-disabled="notEnough('renew')" ng-click="add('renew','re_barcode')">[% l('Renew') %]</button>
428               </div>
429             </div>
430
431           </div>
432
433           <!-- right-hand side -->
434           <div class="col-md-6 container">
435             <table class="table">
436               <thead>
437                 <tr>
438                   <th>[% l('Patron barcode') %]</th>
439                   <th>[% l('Item barcode') %]</th>
440                   <th>[% l('Due date') %]</th>
441                 </tr>
442               </thead>
443               <tbody>
444                 <tr ng-repeat="xact in xact_page.renew track by $index">
445                   <td>{{xact.patron_barcode}}</td>
446                   <td>{{xact.barcode}}</td>
447                   <td>{{xact.due_date | date:'shortDate'}}</td>
448                 </tr>
449               </tbody>
450             </table>
451           </div>
452
453         </div>
454
455       </uib-tab>
456       <uib-tab index="'in_house_use'" heading="[% l('In-house Use') %]">
457
458         <div class="row">
459
460           <!-- left-hand side -->
461           <div class="col-md-6 container" style="border-right:solid 1px;">
462
463             <div class="row">
464               <div class="col-md-1"></div>
465               <div class="col-md-5">
466                 [% l('Use count:') %]
467               </div>
468               <div class="col-md-6">
469                 <input class="form-control" type="number" min="1" max="100" next-on-enter="ihu_barcode" ng-model="in_house_use.count"/>
470               </div>
471             </div>
472
473             <div class="row pad-vert">
474               <div class="col-md-1"></div>
475               <div class="col-md-5">
476                 [% l('Item Barcode:') %]
477               </div>
478               <div class="col-md-6">
479                 <input class="form-control" type="text" ng-model="in_house_use.barcode" eg-enter="add('in_house_use')" id="ihu_barcode"/>
480               </div>
481             </div>
482
483             <div class="row pad-vert">
484               <div class="col-md-2">
485                 <button class="btn btn-warning" ng-click="clear('in_house_use')">[% l('Clear') %]</button>
486               </div>
487               <div class="col-md-4">
488                 <input id="do_check_ihu" type="checkbox" ng-model="strict_barcode" ng-click="changeCheck()"></input>
489                 <label for="do_check_ihu">[% l('Strict Barcode') %]</label>
490               </div>
491               <div class="col-md-6">
492                 <input id="do_print_ihu" type="checkbox" ng-model="do_print" ng-click="changePrint()"></input>
493                 <label for="do_print_ihu">[% l('Print receipt') %]</label>
494                 <button class="btn btn-primary pull-right" ng-disabled="notEnough('in_house_use')" ng-click="add('in_house_use','ihu_barcode')">[% l('Record Use') %]</button>
495               </div>
496             </div>
497
498           </div>
499
500           <!-- right-hand side -->
501           <div class="col-md-6 container">
502             <table class="table">
503               <thead>
504                 <tr>
505                   <th>[% l('Item barcode') %]</th>
506                   <th>[% l('Use count') %]</th>
507                 </tr>
508               </thead>
509               <tbody>
510                 <tr ng-repeat="xact in xact_page.in_house_use track by $index">
511                   <td>{{xact.barcode}}</td>
512                   <td>{{xact.count}}</td>
513                 </tr>
514               </tbody>
515             </table>
516           </div>
517
518         </div>
519
520       </uib-tab>
521       <uib-tab index="'checkin'" heading="[% l('Checkin') %]">
522
523         <div class="row">
524
525           <!-- left-hand side -->
526           <div class="col-md-6" style="border-right:solid 1px;">
527
528             <div class="row">
529               <div class="col-md-1"></div>
530               <div class="col-md-5">
531                 [% l('Checkin Date:') %]
532               </div>
533               <div class="col-md-6">
534                 <eg-date-input ng-model="checkin.backdate"></eg-date-input>
535               </div>
536             </div>
537
538             <div class="row pad-vert">
539               <div class="col-md-1"></div>
540               <div class="col-md-5">
541                 [% l('Item Barcode:') %]
542               </div>
543               <div class="col-md-6">
544                 <input id="ci_barcode" class="form-control" type="text" ng-model="checkin.barcode" eg-enter="!notEnough('checkin') && add('checkin')"/>
545               </div>
546             </div>
547
548             <div class="row pad-vert">
549               <div class="col-md-2">
550                 <button class="btn btn-warning" ng-click="clear('checkin')">[% l('Clear') %]</button>
551               </div>
552               <div class="col-md-4">
553                 <input id="do_check_ci" type="checkbox" ng-model="strict_barcode" ng-click="changeCheck()"></input>
554                 <label for="do_check_ci">[% l('Strict Barcode') %]</label>
555               </div>
556               <div class="col-md-6">
557                 <input id="do_print_ci" type="checkbox" ng-model="do_print" ng-click="changePrint()"></input>
558                 <label for="do_print_ci">[% l('Print receipt') %]</label>
559                 <button class="btn btn-primary pull-right" ng-disabled="notEnough('checkin')" ng-click="add('checkin','ci_barcode')">[% l('Checkin') %]</button>
560                     
561               </div>
562             </div>
563
564           </div>
565
566           <!-- right-hand side -->
567           <div class="col-md-6 container">
568             <table class="table">
569               <thead>
570                 <tr>
571                   <th>[% l('Item barcode') %]</th>
572                   <th>[% l('Effective Checkin date') %]</th>
573                 </tr>
574               </thead>
575               <tbody>
576                 <tr ng-repeat="xact in xact_page.checkin track by $index">
577                   <td>{{xact.barcode}}</td>
578                   <td>{{xact.backdate | date:'shortDate'}}</td>
579                 </tr>
580               </tbody>
581             </table>
582           </div>
583
584         </div>
585
586       </uib-tab>
587       <uib-tab index="'register'" heading="[% l('Register Patron') %]">
588         <div ng-controller="PatronRegCtrl">
589           <div>[% INCLUDE 'staff/circ/patron/t_edit.tt2' %]</div>
590         </div>
591       </uib-tab>
592     </uib-tabset>
593   </div>
594 </div>
595
596 </script>
597
598 [% BLOCK APP_JS %]
599 <!-- offline page app -->
600 <script src="[% ctx.media_prefix %]/js/ui/default/staff/services/file.js"></script>
601 <script src="[% ctx.media_prefix %]/js/ui/default/staff/offline.js"></script>
602 <script>
603 angular.module('egCoreMod').run(['egStrings', function(s) {
604   s.OFFLINE_BLOCKLIST_SUCCESS = "[% l('Offline blocklist downloaded') %]";
605   s.OFFLINE_BLOCKLIST_FAIL = "[% l('Error downloading offline blocklist') %]";
606   s.DUPLICATE_BARCODE = "[% l('Duplicate item barcode') %]";
607
608   s.ALLOW = "[% l('Allow') %]";
609   s.REJECT = "[% l('Reject') %]";
610
611   s.REG_ADDR_TYPE = "[% l('Mailing') %]";
612   s.REG_INVALID_FIELDS =
613     "[% l('Please enter valid values for all required fields.') %]"
614   s.REG_ADDR_REQUIRED =
615     "[% l('An address is required during registration.') %]"
616
617   s.PATRON_BLOCKED_WHY = {};
618   s.PATRON_BLOCKED_WHY.D = "[% l('Patron has penalties') %]";
619   s.PATRON_BLOCKED_WHY.L = "[% l('Barcode is reported Lost') %]";
620   s.PATRON_BLOCKED_WHY.E = "[% l('Patron account is Expired') %]";
621   s.PATRON_BLOCKED_WHY.B = "[% l('Patron account is Barred') %]";
622
623 }]);
624 </script>
625 <link rel="stylesheet" href="[% ctx.base_path %]/staff/css/circ.css" />
626 <link rel="stylesheet" href="[% ctx.media_prefix %]/js/ui/default/staff/build/css/tablesort.css" />
627 [% END %]
628
629 <div ng-view></div> 
630
631 [% END %]
632