Modifications to enable YUI-Grids layout structure. Unfinished.
[koha.git] / 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 <!-- TMPL_INCLUDE NAME="header.inc" -->
5
6 <!-- TMPL_INCLUDE NAME="menu-tools.inc" -->
7
8 <div id="doc3" class="yui-t2">
9    
10    <div id="bd">
11         <div id="yui-main">
12         <div class="yui-b"><div class="yui-g">
13
14 <h1>Select biblios to export</h1>
15 <p>
16     <b>Note : The items are exported by this tool unless specified.</b>
17 </p>
18
19 <form method="post" action="/cgi-bin/koha/tools/export.pl">
20     <fieldset>
21     <legend>
22         Records
23     </legend>
24         <p>
25             <label for="start">from biblio number</label>
26             <input id="start" type="text" name="StartingBiblionumber" size="5" />
27         <p>
28         </p>
29             <label for="end">to biblio number :</label>
30             <input id="end" type="text" name="EndingBiblionumber" size="5" />
31         </p>
32         
33         <p>
34             <label for="itemtypes" >Document type</label>
35             <select name="itemtype">
36                 <option value="">-- All --</option>
37                 <!-- TMPL_LOOP NAME="itemtypeloop" -->
38                                 <!-- TMPL_IF name="selected" -->
39                 <option value="<!-- TMPL_VAR name="value" -->" selected="selected"><!-- TMPL_VAR name="description" --></option>
40 <!-- TMPL_ELSE -->
41                 <option value="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="description" --></option>
42 <!-- /TMPL_IF -->
43                 <!-- /TMPL_LOOP -->
44             </select>
45         </p>
46         
47         <p>
48             <label for="branch">Library</label>
49             <select id="branch" name="branch">
50             <option value="">-- All --</option>
51                 <!-- TMPL_LOOP name="branchloop" -->
52                     <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
53                                 <!-- TMPL_ELSE -->
54                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
55                                 <!-- /TMPL_IF -->
56                     <!-- /TMPL_LOOP -->
57                 </select>
58         </p>
59         <p>
60             <label for="startcn">from itemcallnumber</label>
61             <input id="startcn" type="text" name="start_callnumber" size="5" />
62         </p>
63         <p>
64             <label for="endcn">to itemcallnumber : </label>
65             <input id="endcn" type="text" name="end_callnumber" size="5" />
66         </p>
67     </fieldset>
68     <fieldset>
69     <legend>
70         Options
71     </legend>
72         <p>
73         <label for="dont_export_item">Don't export items</label>
74         <input id="dont_export_item" type="checkbox" name="dont_export_item" />
75         </p>
76         <p>
77         <label for="dont_export_fields">Don't export fields</label>
78         <input id="dont_export_fields" type="text" name="dont_export_fields" />
79         <i>seperate by a blank. (e.g.: 100a 200 606)</i>
80         </p>
81     </fieldset>
82     <fieldset>
83     <legend>
84         Output format
85     </legend>
86         <p>
87             <label for="output_format">into </label>
88             <select id="output_format" name="output_format">
89                 <option value="marc">marc</option>
90                 <option value="xml">xml</option>
91             </select>
92             format.
93         </p>
94         <p>
95         <label for="filename">Filename:</label><input id="filename" tyle=text" name="filename" value="koha.mrc" />
96         </p>
97     </fieldset>
98     <input type="hidden" name="op" value="export" />
99     <input type="submit" value="Export" class="button" />
100 </form>
101
102 </div>
103 </div>
104 </div>
105
106 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
107 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->