]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/cat/catalog/t_edit_marc_modal.tt2
LP#1700635: enable eg-marc-editor for queued records in MARC Batch Import/Export
[working/Evergreen.git] / Open-ILS / src / templates / staff / cat / catalog / t_edit_marc_modal.tt2
1 <div>
2   <div class="modal-header">
3     <button type="button" class="close"
4       ng-click="cancel()" aria-hidden="true">&times;</button>
5     <h4 class="modal-title">[% l('Edit MARC Record') %]</h4>
6   </div>
7   <div class="modal-body">
8     <eg-marc-edit-record dirty-flag="dirty_flag" marc-xml="args.marc_xml"
9                          in-place-mode="true" record-type="bre" save-label="[% l('Modify') %]" />
10   </div>
11   <div class="modal-footer">
12     <input type="submit" ng-click="ok(args)"
13         class="btn btn-primary" value="[% l('Use Edits') %]"/>
14     <button class="btn btn-warning" ng-click="cancel()">[% l('Cancel') %]</button>
15   </div>
16 </div>