]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/vandelay/inc/import_errors.tt2
show rec summary and import failure reason when appropriate
[working/Evergreen.git] / Open-ILS / web / templates / default / vandelay / inc / import_errors.tt2
1 <h1>Import Errors</h1><br/>
2
3 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
4     <button dojoType='dijit.form.Button' 
5         onclick="displayGlobalDiv('vl-queue-div');">&#x2196; &vandelay.back.to.import.queue;</button>
6 </div>
7
8 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
9     <table id='vl-import-error-record' class='hidden'>
10         <tbody>
11             <tr><td>ID</td><td id='vl-error-id'/></tr>
12             <tr><td>Import Error</td><td id='vl-error-import-error'/></tr>
13             <tr><td>Error Detail</td><td id='vl-error-error-detail'/></tr>
14             <tr><td>Title</td><td id='vl-error-title'/></tr>
15             <tr><td>Author</td><td id='vl-error-author'/></tr>
16             <tr><td>ISBN</td><td id='vl-error-isbn'/></tr>
17             <tr><td>ISSN</td><td id='vl-error-issn'/></tr>
18             <tr><td>UPC</td><td id='vl-error-upc'/></tr>
19         </tbody>
20     </table>
21 </div>
22
23 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
24     <div class='hidden' id='vl-import-error-grid-some'>
25         <h3>Item Import Errors</h3>
26         <table  jsId="vlImportErrorGrid"
27                 dojoType="openils.widget.AutoGrid"
28                 autoHeight='true'
29                 fieldOrder="['barcode', 'call_number', 'owning_lib', 'import_error', 'error_detail']"
30                 query="{id: '*'}"
31                 hidePaginator='true'
32                 showColumnPicker='true'
33                 columnPickerPrefix='"vandelay.item.import_error"'
34                 fmClass='vii'>
35                 <thead>
36                     <th field='owning_lib' get='vlGetOrg'/>
37                     <th field='circ_lib' get='vlGetOrg'/>
38                 </thead>
39         </table>
40     </div>
41 </div>
42 <div dojoType="dijit.layout.ContentPane" layoutAlign='client'>
43     <div class='hidden' id='vl-import-error-grid-all'>
44         <h3>Item Import Errors</h3>
45         <table  jsId="vlAllImportErrorGrid"
46                 dojoType="openils.widget.AutoGrid"
47                 autoHeight='true'
48                 fieldOrder="['barcode', 'call_number', 'owning_lib', 'import_error', 'error_detail']"
49                 query="{id: '*'}"
50                 showPaginator='true'
51                 showColumnPicker='true'
52                 columnPickerPrefix='"vandelay.item.import_error"'
53                 fmClass='vii'>
54                 <thead>
55                     <th field='owning_lib' get='vlGetOrg'/>
56                     <th field='circ_lib' get='vlGetOrg'/>
57                 </thead>
58         </table>
59     </div>
60 </div>
61