]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/admin/workstation/t_hatch.tt2
Merge branch 'master' of git.evergreen-ils.org:Evergreen
[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-4">
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-4">
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 class="col-md-3">
37       <button class="btn btn-default" ng-click="copy_to_hatch()">
38         [% l('Copy Local Storage Settings To Hatch') %]
39       </button>
40     </div>
41     <div class="col-md-3">
42       <button class="btn btn-default" ng-click="copy_to_local()">
43         [% l('Copy Hatch Settings To Local Storage') %]
44       </button>
45     </div>
46   </div>
47
48   <div class="row new-entry">
49     <div class="col-md-4">
50       <div class="checkbox">
51         <label>
52           <input type="checkbox" 
53             ng-model="hatch_offline">
54             [% l('Store Offline Transaction Data in Hatch') %]
55         </label>
56       </div>
57     </div>
58   </div>
59
60 </div>
61
62