Bug 8181 [REVISED] Replace DynArch calendar widget with jQueryUI version
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / export.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; MARC export</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 [% INCLUDE 'calendar.inc' %]
5 </head>
6 <body id="tools_export" class="tools">
7 [% INCLUDE 'header.inc' %]
8 [% INCLUDE 'cat-search.inc' %]
9
10 <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>
11
12 <div id="doc3" class="yui-t2">
13    
14    <div id="bd">
15         <div id="yui-main">
16         <div class="yui-b">
17
18 <p>
19     <b>Note : The items are exported by this tool unless specified.</b>
20 </p>
21
22 <form method="post" action="/cgi-bin/koha/tools/export.pl">
23     <fieldset class="rows">
24     <legend> Select records to export </legend>
25         <ol><li>
26             <label for="start">From biblio number: </label>
27             <input id="start" type="text" name="StartingBiblionumber" size="5" />
28         </li>
29         <li>
30             <label for="end">To biblio number: </label>
31             <input id="end" type="text" name="EndingBiblionumber" size="5" />
32         </li>
33         
34         <li>
35             <label for="itemtype">Item type: </label>
36             <select name="itemtype" id="itemtype">
37                 <option value="">-- All --</option>
38                 [% FOREACH itemtypeloo IN itemtypeloop %]
39                                 [% IF ( itemtypeloo.selected ) %]
40                 <option value="[% itemtypeloo.value %]" selected="selected">[% itemtypeloo.description %]</option>
41 [% ELSE %]
42                 <option value="[% itemtypeloo.value %]">[% itemtypeloo.description %]</option>
43 [% END %]
44                 [% END %]
45             </select>
46         </li>
47         
48         <li>
49             <label for="branch">Library: </label>
50             <select id="branch" name="branch">
51             <option value="">-- All --</option>
52                 [% FOREACH branchloo IN branchloop %]
53                     [% IF ( branchloo.selected ) %]<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>
54                                 [% ELSE %]
55                                 <option value="[% branchloo.value %]">[% branchloo.branchname %]</option>
56                                 [% END %]
57                     [% END %]
58                 </select>
59         </li>
60         <li>
61             <label for="startcn">From item call number: </label>
62             <input id="startcn" type="text" name="start_callnumber" size="5" />
63         </li>
64         <li>
65             <label for="endcn">To item call number: </label>
66             <input id="endcn" type="text" name="end_callnumber" size="5" />
67         </li>
68         <li>Accession date (inclusive):
69                 <ul><li>
70         <label for="from">Start date:</label>
71         <input type="text" size="10" id="from" name="start_accession" value="[% from %]" class="datepickerfrom" />
72 </li>
73 <li><label for="to">
74     End date:
75 </label>
76 <input size="10" id="to" name="end_accession" value="[% end_accession %]" type="text" class="datepickerto" />
77 </li>
78 </ul></li></ol>
79     </fieldset>
80     <fieldset class="rows">
81     <legend> Options</legend>
82 <ol>        <li>
83         <label for="dont_export_item">Don't export items</label>
84         <input id="dont_export_item" type="checkbox" name="dont_export_item" />
85         </li>
86         <li>
87         <label for="strip_nonlocal_items">Remove non-local items</label>
88         <input id="strip_nonlocal_items" type="checkbox" name="strip_nonlocal_items" />
89         </li>
90         <li>
91         <label for="dont_export_fields">Don't export fields</label>
92         <input id="dont_export_fields" type="text" name="dont_export_fields" />
93         separate by a blank. (e.g., 100a 200 606)
94         </li></ol>
95     </fieldset>
96     <fieldset class="rows">
97     <legend>
98         Output format
99     </legend>
100         <ol><li>
101             <label for="output_format">File format: </label>
102             <select id="output_format" name="output_format">
103                 <option value="marc">marc</option>
104                 <option value="xml">xml</option>
105             </select>
106             
107         </li>
108         <li>
109         <label for="filename">File name:</label><input id="filename" type="text" name="filename" value="koha.mrc" />
110         </li></ol>
111     </fieldset>
112     <input type="hidden" name="op" value="export" />
113
114     <fieldset class="action"><input type="submit" value="Export" class="button" /></fieldset>
115 </form>
116
117 </div>
118 </div>
119 <div class="yui-b noprint">
120 [% INCLUDE 'tools-menu.inc' %]
121 </div>
122 </div>
123 [% INCLUDE 'intranet-bottom.inc' %]