Fixing nomenclature and tmpl_process3.pl bugs
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / export.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Tools &rsaquo; MARC Export</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; MARC Export</div>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b">
16
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 class="rows">
23     <legend> Select Records to Export </legend>
24         <ol><li>
25             <label for="start">From biblio number: </label>
26             <input id="start" type="text" name="StartingBiblionumber" size="5" />
27         </li>
28         <li>
29             <label for="end">To biblio number: </label>
30             <input id="end" type="text" name="EndingBiblionumber" size="5" />
31         </li>
32         
33         <li>
34             <label for="itemtype">Document type: </label>
35             <select name="itemtype" id="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         </li>
46         
47         <li>
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         </li>
59         <li>
60             <label for="startcn">From itemcallnumber: </label>
61             <input id="startcn" type="text" name="start_callnumber" size="5" />
62         </li>
63         <li>
64             <label for="endcn">To itemcallnumber: </label>
65             <input id="endcn" type="text" name="end_callnumber" size="5" />
66         </li></ol>
67     </fieldset>
68     <fieldset class="rows">
69     <legend> Options</legend>
70 <ol>        <li>
71         <label for="dont_export_item">Don't export items</label>
72         <input id="dont_export_item" type="checkbox" name="dont_export_item" />
73         </li>
74         <li>
75         <label for="dont_export_fields">Don't export fields</label>
76         <input id="dont_export_fields" type="text" name="dont_export_fields" />
77         <i>separate by a blank. (e.g.: 100a 200 606)</i>
78         </li></ol>
79     </fieldset>
80     <fieldset class="rows">
81     <legend>
82         Output format
83     </legend>
84         <ol><li>
85             <label for="output_format">File format: </label>
86             <select id="output_format" name="output_format">
87                 <option value="marc">marc</option>
88                 <option value="xml">xml</option>
89             </select>
90             
91         </li>
92         <li>
93         <label for="filename">File name:</label><input id="filename" type="text" name="filename" value="koha.mrc" />
94         </li></ol>
95     </fieldset>
96     <input type="hidden" name="op" value="export" />
97         
98     <fieldset class="action"><input type="submit" value="Export" class="button" /></fieldset>
99 </form>
100
101 </div>
102 </div>
103 <div class="yui-b">
104 <!-- TMPL_INCLUDE NAME="tools-menu.inc" -->
105 </div>
106 </div>
107 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->