]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/cat/bucket/record/t_bucket_export.tt2
LP#1350042 Browser client templates/scripts (phase 1)
[Evergreen.git] / Open-ILS / src / templates / staff / cat / bucket / record / t_bucket_export.tt2
1 <!-- export bucket dialog -->
2 <form ng-submit="ok(args)">
3   <div>
4     <div class="modal-header">
5       <button type="button" class="close" 
6         ng-click="cancel()" aria-hidden="true">&times;</button>
7       <h4 class="modal-title">[% l('Export Records') %]</h4>
8     </div>
9     <div class="modal-body">
10       <div class="form-group">
11         <label for="export-bucket-format">[% l('Record Format') %]</label>
12         <select class="form-control" ng-model="args.format" id="export-bucket-format">
13           <option value="XML">[% l('MARC XML') %]</option>
14           <option value="USMARC">[% l('USMARC') %]</option>
15           <option value="UNIMARC">[% l('UNIMARC') %]</option>
16           <option value="BRE">[% l('Evergreen Record Entry') %]</option>
17         </select>
18       </div>
19       <div class="form-group">
20         <label for="export-bucket-encoding">[% l('Encoding') %]</label>
21         <select class="form-control" ng-model="args.encoding" id="export-bucket-encoding">
22           <option value="UTF-8">[% l('UTF-8') %]</option>
23           <option value="MARC8">[% l('MARC8') %]</option>
24         </select>
25       </div>
26
27        <div class="checkbox">
28         <label>
29           <input ng-model="args.holdings" type="checkbox"> 
30           [% l('Include Items?') %]
31         </label>
32       </div>
33     </div>
34     <div class="modal-footer">
35       <input type="submit" class="btn btn-primary"
36           ng-click="ok(args)" value="[% l('Export') %]"/>
37       <button class="btn btn-warning" 
38           ng-click="cancel()">[% l('Cancel') %]</button>
39     </div>
40   </div> <!-- modal-content -->
41 </form>