Merge remote-tracking branch 'origin/new/bug_7284'
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / batchMod.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; [% IF ( del ) %]Batch item deletion[% ELSE %]Batch item modification[% END %] </title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
5 <script type="text/JavaScript" language="JavaScript">
6 //<![CDATA[
7          $(document).ready(function() {
8             $("#itemst").tablesorter();
9
10          });
11 //]]>
12 </script>
13 </head>
14 <body id="tools_batchMod" class="tools">
15 [% INCLUDE 'header.inc' %]
16 [% INCLUDE 'cat-search.inc' %]
17
18 <div id="breadcrumbs">
19         <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
20         <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
21         [% IF ( del ) %]
22         <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Batch item deletion</a>
23         [% ELSE %]
24         <a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a>
25         [% END %]
26 </div>
27
28 <div id="doc3" class="yui-t2">
29     <div id="bd">
30         <div id="yui-main">
31             <div class="yui-b">
32                 <h1>Batch item [% IF ( del ) %]deletion[% ELSE %]modification[% END %]</h1>
33                         <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/batchMod.pl">
34                             <fieldset class="rows">
35                                 <legend>Use a file</legend>
36                                       <ol>
37                                       <li>
38                                         <label for="barcode_file">Barcode file</label><input type="radio" name="filecontent" value="barcode_file" id="barcode_file" checked="checked" /></li>
39                     <li>
40                                         <label for="itemid_file">Item number file</label><input type="radio" name="filecontent" value="itemid_file" id="itemid_file" />
41                                       </li>
42                                     <li><label for="uploadfile">File: </label> <input type="file" id="uploadfile" name="uploadfile" /></li>
43                                 </ol>
44                             </fieldset>
45                             <fieldset class="rows">
46                                 <legend>Or scan items one by one</legend>
47                                 <ol>
48                                     <li>
49                                       <label for="barcodelist">Barcode list (one barcode per line): </label>
50                                       <textarea rows="10" cols="30" id="barcodelist" name="barcodelist"></textarea>
51                                     </li>
52                                 </ol>
53                             </fieldset>
54                             <input type="hidden" name="op" value="show" />
55                             [% IF ( del ) %]<input type="hidden" name="del" value="1" />[% END %]
56                             <fieldset class="action">
57                                 <input type="submit" value="Continue" class="button" />
58                                 <a class="cancel" href="/cgi-bin/koha/tools/tools-home.pl">Cancel</a>
59                             </fieldset>
60                         </form>
61                     </div>
62                     </div>
63        <div class="yui-b">
64             [% INCLUDE 'tools-menu.inc' %]
65         </div>
66     </div>
67 [% INCLUDE 'intranet-bottom.inc' %]