]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/admin/workstation/t_hatch.tt2
Lp 1801998: Deprecate Hatch Storage Grammar Fix
[working/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="panel panel-danger">
28       <div class="panel-heading">[% l('Storing settings in Hatch is deprecated') %]</div>
29       <div class="panel-body">
30         [% l("If 'Store Local Settings in Hatch' is enabled, use the 'Copy Hatch Settings To Local Storage' button before disabling 'Store Local Settings in Hatch'") %]
31       </div>
32     </div>
33   </div>
34
35   <div class="row new-entry">
36     <div class="col-md-4">
37       <div class="checkbox">
38         <label>
39           <input type="checkbox" 
40             ng-model="hatch_settings">
41             [% l('Store Local Settings in Hatch') %]
42         </label>
43       </div>
44     </div>
45     <div class="col-md-3">
46       <button class="btn btn-default" ng-click="copy_to_local()">
47         [% l('Copy Hatch Settings To Local Storage') %]
48       </button>
49     </div>
50   </div>
51
52 </div>
53
54