]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/admin/workstation/t_hatch.tt2
LP#1646166 À la carte Hatch, on-call settings, strict access.
[Evergreen.git] / Open-ILS / src / templates / staff / admin / workstation / t_hatch.tt2
1 <div class="container admin-splash-container">
2
3   <h2>[% l('Print / Storage Service ("Hatch")') %]</h2>
4
5   <div class="alert alert-success" ng-if="hatch_available">
6     [% l("Hatch is Available") %]
7     <span class="glyphicon glyphicon-thumbs-up"></span>
8   </div>
9
10   <div class="alert alert-danger" ng-if="!hatch_available">
11     [% l("Hatch is Not Installed In This Browser") %]
12   </div>
13
14   <div class="row">
15     <div class="col-md-6">
16       <div class="checkbox">
17         <label>
18           <input type="checkbox" 
19             ng-model="hatch_printing">
20             [% l('Use Hatch For Printing') %]
21         </label>
22       </div>
23     </div>
24   </div>
25
26   <div class="row new-entry">
27     <div class="col-md-6">
28       <div class="checkbox">
29         <label>
30           <input type="checkbox" 
31             ng-model="hatch_settings">
32             [% l('Store Local Settings in Hatch') %]
33         </label>
34       </div>
35     </div>
36   </div>
37
38   <div class="row new-entry">
39     <div class="col-md-6">
40       <div class="checkbox">
41         <label>
42           <input type="checkbox" 
43             ng-model="hatch_offline">
44             [% l('Store Offline Transaction Data in Hatch') %]
45         </label>
46       </div>
47     </div>
48   </div>
49
50 </div>
51
52