]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/vandelay/inc/import_errors.tt2
Merge remote branch 'working/collab/phasefx/unified_vol_copy_ui_from_item_status_ui'
[working/Evergreen.git] / Open-ILS / web / templates / default / vandelay / inc / import_errors.tt2
1
2 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
3     <button dojoType='dijit.form.Button' 
4         onclick="displayGlobalDiv('vl-queue-div');">&#x2196; &vandelay.back.to.import.queue;</button>
5 </div>
6
7 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
8     <div id='vl-import-error-record' class='hidden'>
9         <h1>Import Errors</h1><br/>
10         <table>
11             <tbody>
12                 <tr><td>ID</td><td id='vl-error-id'/></tr>
13                 <tr><td>Import Error</td><td id='vl-error-import-error'/></tr>
14                 <tr><td>Error Detail</td><td id='vl-error-error-detail'/></tr>
15                 <tr><td>Title</td><td id='vl-error-title'/></tr>
16                 <tr><td>Author</td><td id='vl-error-author'/></tr>
17                 <tr><td>ISBN</td><td id='vl-error-isbn'/></tr>
18                 <tr><td>ISSN</td><td id='vl-error-issn'/></tr>
19                 <tr><td>UPC</td><td id='vl-error-upc'/></tr>
20             </tbody>
21         </table>
22     </div>
23 </div>
24
25 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
26     <div class='hidden' id='vl-import-error-grid-some'>
27         <table  jsId="vlImportErrorGrid"
28                 dojoType="openils.widget.AutoGrid"
29                 autoHeight='true'
30                 fieldOrder="['barcode', 'call_number', 'owning_lib', 'import_error', 'error_detail']"
31                 query="{id: '*'}"
32                 hidePaginator='true'
33                 showColumnPicker='true'
34                 columnPickerPrefix='"vandelay.item.import_error"'
35                 fmClass='vii'>
36                 <thead>
37                     <tr>
38                         <th field='owning_lib' get='vlGetOrg'/>
39                         <th field='circ_lib' get='vlGetOrg'/>
40                     </tr>
41                 </thead>
42         </table>
43     </div>
44 </div>
45 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
46     <div class='hidden' id='vl-import-error-grid-all'>
47         <h1>Import Items</h1><br/>
48         <input dojoType='dijit.form.CheckBox' jsId='vlImportItemsShowErrors' onchange='vlLoadErrorUIAll();'/>
49         <span>Limit to Import Failures</span>
50         <table width='100%'><tr><td width='100%' align='right'>
51             <select id='vl-item-export-options' style='margin-right: 10px;'>
52                 <!-- TODO I18N -->
53                 <option value=''>Export Items As...</option>
54                 <option value='print'>Print</option>
55                 <option value='csv'>CSV</option>
56                 <option value='email'>Email</option>
57             </select>
58         </td></tr></table>
59         <table  jsId="vlAllImportErrorGrid"
60                 dojoType="openils.widget.AutoGrid"
61                 autoHeight='true'
62                 fieldOrder="['barcode', 'call_number', 'owning_lib', 'import_error', 'error_detail']"
63                 query="{id: '*'}"
64                 showPaginator='true'
65                 showColumnPicker='true'
66                 columnPickerPrefix='"vandelay.item.import_error"'
67                 fmClass='vii'>
68                 <thead>
69                     <tr>
70                         <th field='owning_lib' get='vlGetOrg'/>
71                         <th field='circ_lib' get='vlGetOrg'/>
72                     </tr>
73                 </thead>
74         </table>
75     </div>
76 </div>
77