new virtual shelves changes, keyed by biblionumber
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / tools / export.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; MARC biblio export</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-tools.inc" -->
7
8 <h1>Select biblios to export</h1>
9 <p>
10     <b>Note : The items are exported by this tool unless specified.</b>
11 </p>
12
13 <form method="post" action="/cgi-bin/koha/tools/export.pl">
14     <fieldset>
15     <legend>
16         Records
17     </legend>
18         <p>
19             <label for="start">from biblio number</label>
20             <input id="start" type="text" name="StartingBiblionumber" size="5" />
21         <p>
22         </p>
23             <label for="end">to biblio number :</label>
24             <input id="end" type="text" name="EndingBiblionumber" size="5" />
25         </p>
26         
27         <p>
28             <label for="itemtypes" >Document type</label>
29             <select name="itemtype">
30                 <option value="">-- All --</option>
31                 <!-- TMPL_LOOP NAME="itemtypeloop" -->
32                 <option value="<!-- TMPL_VAR name="value" -->"
33                     <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->>
34                     <!-- TMPL_VAR name="description" -->
35                     </option>
36                 <!-- /TMPL_LOOP -->
37             </select>
38         </p>
39         
40         <p>
41             <label for="branch">Library</label>
42             <select id="branch" name="branch">
43             <option value="">-- All --</option>
44                 <!-- TMPL_LOOP name="branchloop" -->
45                     <option value="<!-- TMPL_VAR name="value" -->"
46                     <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->>
47                         <!-- TMPL_VAR name="branchname" -->
48                     </option>
49                     <!-- /TMPL_LOOP -->
50                 </select>
51         </p>
52         <p>
53             <label for="startcn">from itemcallnumber</label>
54             <input id="startcn" type="text" name="start_callnumber" size="5" />
55         </p>
56         <p>
57             <label for="endcn">to itemcallnumber : </label>
58             <input id="endcn" type="text" name="end_callnumber" size="5" />
59         </p>
60     </fieldset>
61     <fieldset>
62     <legend>
63         Options
64     </legend>
65         <p>
66         <label for="dont_export_item">Don't export items</label>
67         <input id="dont_export_item" type="checkbox" name="dont_export_item" />
68         </p>
69         <p>
70         <label for="dont_export_fields">Don't export fields</label>
71         <input id="dont_export_fields" type="text" name="dont_export_fields" />
72         <i>seperate by a blank. (e.g.: 100a 200 606)</i>
73         </p>
74     </fieldset>
75     <fieldset>
76     <legend>
77         Output format
78     </legend>
79         <p>
80             <label for="output_format">into </label>
81             <select id="output_format" name="output_format">
82                 <option value="marc">marc</option>
83                 <option value="xml">xml</option>
84             </select>
85             format.
86         </p>
87         <p>
88         <label for="filename">Filename:</label><input id="filename" tyle=text" name="filename" value="koha.mrc" />
89         </p>
90     </fieldset>
91     <input type="hidden" name="op" value="export" />
92     <input type="submit" value="Export" class="button" />
93 </form>
94
95 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->