]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/cat/bucket/record/t_bucket_export.tt2
LP2045292 Color contrast for AngularJS patron bills
[working/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         </select>
16       </div>
17       <div class="form-group">
18         <label for="export-bucket-encoding">[% l('Encoding') %]</label>
19         <select class="form-control" ng-model="args.encoding" id="export-bucket-encoding">
20           <option value="UTF-8">[% l('UTF-8') %]</option>
21           <option value="MARC8">[% l('MARC8') %]</option>
22         </select>
23       </div>
24
25        <div class="checkbox">
26         <label>
27           <input ng-model="args.holdings" type="checkbox"> 
28           [% l('Include Items?') %]
29         </label>
30       </div>
31     </div>
32     <div class="modal-footer">
33       <input type="submit" class="btn btn-primary"
34           ng-click="ok(args)" value="[% l('Export') %]"/>
35       <button class="btn btn-warning" 
36           ng-click="cancel()">[% l('Cancel') %]</button>
37     </div>
38   </div> <!-- modal-content -->
39 </form>