Bug 18693: Translatability: Get rid of exposing a [%% FOREACH loop in translation...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / export.tt
blobeb0069eca1b775b751efd79bcb7d0e9cdd297447
1 [% USE Branches %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Tools &rsaquo; Export data</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 [% INCLUDE 'calendar.inc' %]
6 <script type="text/javascript">
7 //<![CDATA[
8 $(document).ready(function() {
9     $('#exporttype').tabs();
11     $("li.csv_profiles").hide();
13     $("#bibs select[name='output_format']").on('change', function(){
14         var format = $(this).val();
15         if ( format == 'csv' ) {
16             $("#bibs li.csv_profiles").show();
17         } else {
18             $("#bibs li.csv_profiles").hide();
19         }
20     });
21     $("#checkall").on("click",function(e){
22         e.preventDefault();
23         $(".branch_select").prop("checked",1);
24     });
25     $("#checknone").on("click",function(e){
26         e.preventDefault();
27         $(".branch_select").prop("checked",0);
28     });
29 });
30 //]]>
31 </script>
32 <style type="text/css">
33     fieldset.rows fieldset.rows {
34         width: 90%;
35     }
36 </style>
37 </head>
38 <body id="tools_export" class="tools">
39 [% INCLUDE 'header.inc' %]
40 [% INCLUDE 'cat-search.inc' %]
42 <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; Export data</div>
44 <div id="doc3" class="yui-t2">
45    
46    <div id="bd">
47         <div id="yui-main">
48         <div class="yui-b">
50 [% FOR m IN messages %]
51     <div class="dialog [% m.type %]">
52         [% SWITCH m.code %]
53         [% CASE 'invalid_mimetype' %]The file used does not have a valid format. Only csv and txt are allowed.
54         [% CASE %][% m.code %]
55         [% END %]
56     </div>
57 [% END %]
59 <div id="exporttype" class="toptabs">
60 <ul>
61 <li><a href="#bibs">Export bibliographic records</a></li>
62 <li><a href="#auths">Export authority records</a></li>
63 [% IF ( allow_db_export ) %]
64 <li><a href="#db">Export database</a></li>
65 [% END %]
66 [% IF ( allow_conf_export ) %]
67 <li><a href="#conf">Export configuration</a></li>
68 [% END %]
69 </ul>
70 <div id="bibs">
71 <p>
72     <b>Note : The items are exported by this tool unless specified.</b>
73 </p>
75 <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/export.pl">
76     <fieldset class="rows">
77     <legend> Select records to export </legend>
78         <ol>
79         <li>
80             <label for="start">From biblio number: </label>
81             <input id="start" type="text" name="StartingBiblionumber" size="5" />
82         </li>
83         <li>
84             <label for="end">To biblio number: </label>
85             <input id="end" type="text" name="EndingBiblionumber" size="5" />
86         </li>
87         
88         <li>
89             <label for="itemtype">Item type: </label>
90             <select name="itemtype" id="itemtype">
91                 <option value="">-- All --</option>
92                 [% FOREACH itemtype IN itemtypes %]
93                     <option value="[% itemtype.itemtype %]">[% itemtype.translated_description %]</option>
94                 [% END %]
95             </select>
96         </li>
97         
98         <li>
99             <label>Library: </label>
100             [% INCLUDE 'branch-selector.inc' branches = libraries %]
101         </li>
102     </ol>
104     <fieldset class="rows">
105         <legend>Call number range</legend>
106         <ol>
107             <li>
108                 <label for="startcn">From item call number: </label>
109                 <input id="startcn" type="text" name="start_callnumber" size="15" />
110             </li>
111             <li>
112                 <label for="endcn">To item call number: </label>
113                 <input id="endcn" type="text" name="end_callnumber" size="15" />
114             </li>
115         </ol>
116     </fieldset>
118     <fieldset class="rows">
119         <legend>Accession date (inclusive)</legend>
120         <ol>
121             <li>
122                     <label for="from">Start date:</label>
123                     <input type="text" size="10" id="from" name="start_accession" value="[% from %]" class="datepickerfrom" />
124             </li>
125             <li>
126                 <label for="to">End date:</label>
127                 <input size="10" id="to" name="end_accession" value="[% end_accession %]" type="text" class="datepickerto" />
128             </li>
129         </ol>
130     </fieldset>
132     </fieldset>
133     <fieldset class="rows">
134     <legend>
135         Use a file
136     </legend>
137         <ol>
138         <li>File containing a list of biblio numbers with one biblio number per line. This list works as a filter: it is compatible with other parameters. (File types accepted: .csv and .txt)</li>
139         <li><label for="id_list_file">File: </label> <input type="file" id="id_list_file" name="id_list_file" /></li>
140         </ol>
141     </fieldset>
142     <fieldset class="rows">
143     <legend> Options</legend>
144 <ol>        <li>
145         <label for="dont_export_item">Don't export items:</label>
146         <input id="dont_export_item" type="checkbox" name="dont_export_item" />
147         </li>
148         <li>
149         <label for="strip_nonlocal_items">Remove non-local items:</label>
150         <input id="strip_nonlocal_items" type="checkbox" name="strip_nonlocal_items" />
151         </li>
152         <li>
153         <label for="export_remove_fields">Don't export fields:</label>
154         <input id="export_remove_fields" type="text" name="export_remove_fields" value="[% export_remove_fields %]" />
155         separate by a blank. (e.g., 100a 200 606)
156         </li></ol>
157     </fieldset>
158     <fieldset class="rows">
159     <legend>
160         Output format
161     </legend>
162         <ol><li>
163             <label for="output_format">File format: </label>
164             <select id="output_format" name="output_format">
165                 <option value="iso2709">marc</option>
166                 <option value="xml">xml</option>
167                 <option value="csv">csv</option>
168             </select>
169         </li>
170         <li class="csv_profiles">
171             <label for="bibs_csv_profile">CSV profile: </label>
172             <select id="bibs_csv_profile" name="csv_profile_id">
173                 [% FOR csv_profile IN csv_profiles %]
174                     <option value="[% csv_profile.export_format_id %]">[% csv_profile.profile %]</option>
175                 [% END %]
176             </select>
177         </li>
178         <li>
179         <label for="filename">File name:</label><input id="filename" type="text" name="filename" value="koha.mrc" />
180         </li></ol>
181     </fieldset>
182     <input type="hidden" name="op" value="export" />
183     <input type="hidden" name="record_type" value="bibs" />
185     <fieldset class="action"><input type="submit" value="Export bibliographic records" class="button" /></fieldset>
186 </form>
187 </div>
189 <div id="auths">
190 <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/export.pl">
191     <fieldset class="rows">
192     <legend> Select records to export </legend>
193         <ol><li>
194             <label for="start">From authid: </label>
195             <input id="start" type="text" name="starting_authid" size="6" />
196         </li>
197         <li>
198             <label for="end">To authid: </label>
199             <input id="end" type="text" name="ending_authid" size="6" />
200         </li>
201         <li>
202             <label for="authtype">Authority type: </label>
203             <select name="authtype" id="authtype">
204                 <option value="">-- All --</option>
205                 [% FOREACH authority_type IN authority_types %]
206                     <option value="[% authtypeloo.value %]">[% authtypeloo.description %]</option>
207                 [% END %]
208             </select>
209         </li>
210         </ol>
211     </fieldset>
212     <fieldset class="rows">
213     <legend>
214         Use a file
215     </legend>
216         <ol>
217         <li>File containing a list of authids with one authid per line. This list works as a filter: it is compatible with other parameters. (File types accepted: .csv and .txt)</li>
218         <li><label for="id_list_file">File:</label> <input type="file" id="id_list_file" name="id_list_file" /></li>
219         </ol>
220     </fieldset>
221     <fieldset class="rows">
222     <legend>Options</legend>
223         <ol>
224         <li>
225             <label for="export_remove_fields">Don't export fields:</label>
226             <input id="export_remove_fields" type="text" name="export_remove_fields" />
227             separate by a blank. (e.g., 100a 200 606)
228         </li></ol>
229     </fieldset>
230     <fieldset class="rows">
231     <legend>Output format</legend>
232         <ol><li>
233             <label for="output_format">File format: </label>
234             <select id="output_format" name="output_format">
235                 <option value="marc">marc</option>
236                 <option value="xml">xml</option>
237             </select>
238         </li>
239         <li>
240         <label for="filename">File name:</label><input id="filename" type="text" name="filename" value="koha.mrc" />
241         </li></ol>
242     </fieldset>
243     <input type="hidden" name="op" value="export" />
244     <input type="hidden" name="record_type" value="auths" />
246     <fieldset class="action"><input type="submit" value="Export authority records" class="button" /></fieldset>
247 </form>
248 </div>
250 [% IF ( allow_db_export ) %]
251 <div id="db">
252 <form method="post" action="/cgi-bin/koha/tools/export.pl">
253     <p><b>Note : This export file will be very large, and is generated nightly.</b></p>
254     <fieldset class="rows">
255     <legend> Choose a file </legend>
256     [% IF ( dbfiles && (dbfiles.size > 0) ) %]
257         <ul>
258         [% FOREACH dbfile IN dbfiles %]
259             <li><input type="radio" name="filename" value="[% dbfile %]">[% dbfile %]</input></li>
260         [% END %]
261         </ul>
262     [% ELSE %]
263         <p>Unfortunately, no backups are available.</p>
264     [% END %]
265     </fieldset>
267     [% IF ( dbfiles && (dbfiles.size > 0) ) %]
268         <input type="hidden" name="op" value="export" />
269         <input type="hidden" name="record_type" value="db" />
270         <fieldset class="action"><input type="submit" value="Download database" class="button" /></fieldset>
271     [% END %]
272 </form>
273 </div>
274 [% END %]
276 [% IF ( allow_conf_export ) %]
277 <div id="conf">
278 <form method="post" action="/cgi-bin/koha/tools/export.pl">
279     <p><b>Note : This export file will be very large, and is generated nightly.</b></p>
280     <fieldset class="rows">
281     <legend> Choose a file </legend>
282     [% IF ( conffiles && (conffiles.size > 0) ) %]
283         <ul>
284         [% FOREACH conffile IN conffiles %]
285             <li><input type="radio" name="filename" value="[% conffile %]">[% conffile %]</input></li>
286         [% END %]
287         </ul>
288     [% ELSE %]
289         <p>Unfortunately, no backups are available.</p>
290     [% END %]
291     </fieldset>
293     [% IF ( conffiles && (conffiles.size > 0) ) %]
294         <input type="hidden" name="op" value="export" />
295         <input type="hidden" name="record_type" value="conf" />
296         <fieldset class="action"><input type="submit" value="Download configuration" class="button" /></fieldset>
297     [% END %]
298 </form>
299 </div>
300 [% END %]
302 </div>
304 </div>
305 </div>
306 <div class="yui-b noprint">
307 [% INCLUDE 'tools-menu.inc' %]
308 </div>
309 </div>
310 [% INCLUDE 'intranet-bottom.inc' %]