Bug 2696: Fine payments should show what was paid for
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / batchMod.tt
1 [% USE Asset %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Tools &rsaquo; [% IF ( del ) %]Batch item deletion[% ELSE %]Batch item modification[% END %] </title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 </head>
7 <body id="tools_batchMod" class="tools">
8 [% INCLUDE 'header.inc' %]
9 [% INCLUDE 'cat-search.inc' %]
10
11 <div id="breadcrumbs">
12     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
13     <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
14     [% IF ( del ) %]
15     <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Batch item deletion</a>
16     [% ELSE %]
17     <a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a>
18     [% END %]
19 </div>
20
21 <div id="doc3" class="yui-t2">
22     <div id="bd">
23         <div id="yui-main">
24             <div class="yui-b">
25                 <h1>Batch item [% IF ( del ) %]deletion[% ELSE %]modification[% END %]</h1>
26                         <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/batchMod.pl">
27                             <fieldset class="rows">
28                                 <legend>Use a file</legend>
29                                   <ol>
30                       <li>
31                     <label for="barcode_file">Barcode file: </label><input type="radio" name="filecontent" value="barcode_file" id="barcode_file" checked="checked" /></li>
32                     <li>
33                     <label for="itemid_file">Item number file: </label><input type="radio" name="filecontent" value="itemid_file" id="itemid_file" />
34                       </li>
35                                     <li><label for="uploadfile">File: </label> <input type="file" id="uploadfile" name="uploadfile" /></li>
36                                 </ol>
37                             </fieldset>
38                             <fieldset class="rows">
39                                 <legend>Or scan items one by one</legend>
40                                 <ol>
41                                     <li>
42                                       <label for="barcodelist">Barcode list (one barcode per line): </label>
43                                       <textarea rows="10" cols="30" id="barcodelist" name="barcodelist"></textarea>
44                                     </li>
45                                 </ol>
46                             </fieldset>
47                             <input type="hidden" name="op" value="show" />
48
49                             [% UNLESS del %]
50                                 <fieldset class="rows">
51                                     <legend>Use default values</legend>
52                                     <ol class="radio">
53                                         <li>
54                                             <label>
55                                                 <input type="checkbox" name="use_default_values" id="use_default_values" />
56                                                 Populate fields with default values from default framework
57                                             </label>
58                                         </li>
59                                     </ol>
60                                 </fieldset>
61                             [% END %]
62
63                             [% IF ( del ) %]<input type="hidden" name="del" value="1" />[% END %]
64                             <fieldset class="action">
65                                 <input type="submit" value="Continue" class="button" />
66                 <a class="cancel" href="/cgi-bin/koha/tools/tools-home.pl">Cancel</a>
67                             </fieldset>
68
69                         </form>
70                     </div>
71             </div>
72        <div class="yui-b">
73             [% INCLUDE 'tools-menu.inc' %]
74         </div>
75     </div>
76
77 [% MACRO jsinclude BLOCK %]
78     [% Asset.js("js/tools-menu.js") %]
79 [% END %]
80
81 [% INCLUDE 'intranet-bottom.inc' %]