first go at moving templates to a modules/ dir
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / modules / 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                                 <!-- TMPL_IF name="selected" -->
33                 <option value="<!-- TMPL_VAR name="value" -->" selected="selected"><!-- TMPL_VAR name="description" --></option>
34 <!-- TMPL_ELSE -->
35                 <option value="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="description" --></option>
36 <!-- /TMPL_IF -->
37                 <!-- /TMPL_LOOP -->
38             </select>
39         </p>
40         
41         <p>
42             <label for="branch">Library</label>
43             <select id="branch" name="branch">
44             <option value="">-- All --</option>
45                 <!-- TMPL_LOOP name="branchloop" -->
46                     <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
47                                 <!-- TMPL_ELSE -->
48                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
49                                 <!-- /TMPL_IF -->
50                     <!-- /TMPL_LOOP -->
51                 </select>
52         </p>
53         <p>
54             <label for="startcn">from itemcallnumber</label>
55             <input id="startcn" type="text" name="start_callnumber" size="5" />
56         </p>
57         <p>
58             <label for="endcn">to itemcallnumber : </label>
59             <input id="endcn" type="text" name="end_callnumber" size="5" />
60         </p>
61     </fieldset>
62     <fieldset>
63     <legend>
64         Options
65     </legend>
66         <p>
67         <label for="dont_export_item">Don't export items</label>
68         <input id="dont_export_item" type="checkbox" name="dont_export_item" />
69         </p>
70         <p>
71         <label for="dont_export_fields">Don't export fields</label>
72         <input id="dont_export_fields" type="text" name="dont_export_fields" />
73         <i>seperate by a blank. (e.g.: 100a 200 606)</i>
74         </p>
75     </fieldset>
76     <fieldset>
77     <legend>
78         Output format
79     </legend>
80         <p>
81             <label for="output_format">into </label>
82             <select id="output_format" name="output_format">
83                 <option value="marc">marc</option>
84                 <option value="xml">xml</option>
85             </select>
86             format.
87         </p>
88         <p>
89         <label for="filename">Filename:</label><input id="filename" tyle=text" name="filename" value="koha.mrc" />
90         </p>
91     </fieldset>
92     <input type="hidden" name="op" value="export" />
93     <input type="submit" value="Export" class="button" />
94 </form>
95
96 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->