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