More template cleanup, resident search forms, breadcrumbs menus
[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 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; 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>
23     <legend>
24         Select Records to Export
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="itemtype" >Document type</label>
37             <select name="itemtype" id="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" type="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 class="yui-b">
107 <!-- TMPL_INCLUDE NAME="tools-menu.inc" -->
108 </div>
109 </div>
110 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->