Bug 11642: Add confirmation and tooltips to batch deletion tool
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / upload-images.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha &rsaquo; Tools &rsaquo; Upload images</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 <style>
8     #fileuploadstatus,#fileuploadfailed,#jobpanel,#jobstatus,#jobfailed { display : none; }
9 </style>
10 </head>
11
12 <body id="tools_upload-images" class="tools">
13 [% INCLUDE 'header.inc' %]
14 [% INCLUDE 'cat-search.inc' %]
15
16 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; [% IF ( uploadimage ) %]<a href="/cgi-bin/koha/tools/upload-cover-image.pl">Upload local cover image</a> &rsaquo; Upload results[% ELSE %]Upload local cover image[% END %]</div>
17
18 <div class="main container-fluid">
19     <div class="row">
20         <div class="col-sm-10 col-sm-push-2">
21             <main>
22
23 <h1>Upload local cover image</h1>
24 [% IF ( uploadimage ) %]
25 <p>Image upload results :</p>
26 <ul>
27     <li>[% total | html %] images found</li>
28     [% IF ( error ) %]
29     <div class="dialog alert">
30     [% IF ( error == 'UZIPFAIL' ) %]<p><b>Failed to unzip archive.<br />Please ensure you are uploading a valid zip file and try again.</b></p>
31     [% ELSIF ( error == 'OPNLINK' ) %]<p><b>Cannot open folder index (idlink.txt or datalink.txt) to read.<br />Please verify that it exists.</b></p>
32     [% ELSIF ( error == 'OPNIMG' ) %]<p><b>Cannot process file as an image.<br />Please ensure you only upload GIF, JPEG, PNG, or XPM images.</b></p>
33     [% ELSIF ( error == 'DELERR' ) %]<p><b>Unrecognized or missing field delimiter.<br />Please verify that you are using either a single quote or a tab.</b></p>
34     [% ELSIF ( error == 'DBERR' ) %]<p><b>Unable to save image to database.</b></p>
35     [% ELSE %]<p><b>An unknown error has occurred.<br />Please review the error log for more details.</b></p>[% END %]
36     </div>
37     </li>
38     [% END %]
39     <li><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]">View final record</a></li>
40         <li><a href="/cgi-bin/koha/tools/tools-home.pl">Back</a></li>
41 </ul>
42 <hr />
43 [% END %]
44 <ul>
45         <li>Select an image file or ZIP file to upload. The tool will accept images in GIF, JPEG, PNG, and XPM formats.</li>
46 </ul>
47 <form method="post" action="/cgi-bin/koha/tools/upload-cover-image.pl" id="uploadfile" enctype="multipart/form-data">
48 <fieldset class="rows" >
49 <legend>Upload images</legend>
50 <ol>
51         <li>
52         <div id="fileuploadform">
53         <label for="fileToUpload" class="required">Select the file to upload: </label>
54         <input type="file" id="fileToUpload" name="fileToUpload" required="required" class="required" />
55     <span class="required">Required</span>
56         </div>  </li>
57 </ol>
58     <fieldset class="action"><button class="submit btn btn-default">Upload file</button></fieldset>
59 </fieldset>
60
61     <div id="uploadpanel">
62         <div id="fileuploadstatus" class="progress_panel">Upload progress:
63             <progress max="100" value="0" id="fileuploadprogress">
64             </progress>
65             <span class="fileuploadpercent">0</span>%
66         </div>
67         <div id="fileuploadfailed"></div>
68     </div>
69 </form>
70
71     <form method="post" id="processfile" action="/cgi-bin/koha/tools/upload-cover-image.pl" enctype="multipart/form-data">
72 <fieldset class="rows">
73         <input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" />
74         <input type="hidden" name="runinbackground" id="runinbackground" value="" />
75         <input type="hidden" name="completedJobID" id="completedJobID" value="" />
76         </fieldset>
77   <fieldset class="rows">
78     <legend>File type</legend>
79     <ol>
80       <li class="radio">
81         [% IF (filetype != 'image' ) %]<input type="radio" id="zipfile" name="filetype" value="zip" checked="checked" />[% ELSE %]<input type="radio" id="zipfile" name="filetype" value="zip" />[% END %]
82         <label for="zipfile">ZIP file</label>
83       </li>
84       <li class="radio">
85         [% IF (filetype == 'image' ) %]<input type="radio" id="image" name="filetype" value="image" checked="checked" />[% ELSE %]<input type="radio" id="image" name="filetype" value="image" />[% END %]
86         <label for="image">Image file</label>
87       </li>
88       <li class="radio">
89         [% IF ( filetype == 'image' ) %]<span id="bibnum">[% ELSE %]<span id="bibnum" style="display: none">[% END %]<label for="biblionumber">Enter cover biblionumber: </label><input type="text" id="biblionumber" name="biblionumber" value="[% biblionumber | html %]" size="15" /></span>
90       </li>
91     </ol>
92   </fieldset>
93   <fieldset class="rows">
94     <legend>Options</legend>
95     <ol>
96       <li class="checkbox">
97         [% IF AllowMultipleCovers == 0 %]<input type="checkbox" id="replace" name="replace" checked="checked" disabled="disabled" value="1" />[% ELSE %]<input type="checkbox" id="replace" name="replace" value="1" />[% END %]
98         <label for="replace">Replace existing covers</label>
99       </li>
100     </ol>
101   </fieldset>
102   <fieldset class="action"><button type="submit" class="btn btn-default btn-sm">Process images</button></fieldset>
103 </form>
104
105             </main>
106         </div> <!-- /.col-sm-10.col-sm-push-2 -->
107
108         <div class="col-sm-2 col-sm-pull-10">
109             <aside>
110                 [% INCLUDE 'tools-menu.inc' %]
111             </aside>
112         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
113      </div> <!-- /.row -->
114
115 [% MACRO jsinclude BLOCK %]
116     [% Asset.js("js/tools-menu.js") | $raw %]
117     [% Asset.js("js/background-job-progressbar.js") | $raw %]
118     [% Asset.js("js/file-upload.js") | $raw %]
119     <script>
120         function StartUpload() {
121             if( $('#fileToUpload').prop('files').length == 0 ) return;
122             $('#uploadform button.submit').prop('disabled',true);
123             $("#fileuploadstatus").show();
124             $("#uploadedfileid").val('');
125             xhr= AjaxUpload( $('#fileToUpload'), $('#fileuploadprogress'), 'temp=1', cbUpload );
126         }
127         function cbUpload( status, fileid, errors ) {
128             if( status=='done' ) {
129                 $("#uploadedfileid").val( fileid );
130                 $('#fileToUpload').prop('disabled',true);
131                 $("#processfile").show();
132             } else {
133                 var errMsgs = [ _("Error code 0 not used"), _("File already exists"), _("Directory is not writeable"), _("Root directory for uploads not defined"), _("Temporary directory for uploads not defined") ];
134                 var errCode = errors[$('#fileToUpload').prop('files')[0].name].code;
135                 $("#fileuploadstatus").hide();
136                 $("#fileuploadfailed").show();
137                 $("#fileuploadfailed").text( _("Upload status: ") +
138                     ( status=='failed'? _("Failed") + " - (" + errCode + ") " + errMsgs[errCode]:
139                     ( status=='denied'? _("Denied"): status ))
140                 );
141                 $("#processfile").hide();
142             }
143         }
144         $(document).ready(function(){
145             $("#processfile").hide();
146             $("#zipfile").click(function(){
147                 $("#bibnum").hide();
148             });
149             $("#image").click(function(){
150                 $("#bibnum").show();
151             });
152             $("#uploadfile").validate({
153                 submitHandler: function(form) {
154                     StartUpload();
155                     return false;
156                 }
157             });
158         });
159     </script>
160 [% END %]
161
162 [% INCLUDE 'intranet-bottom.inc' %]