Moving </head><body> into body of templates so that js and css can be embedded per...
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / import.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Cataloging &rsaquo; MARC Import</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="menu-tools.inc" -->
8
9 <div id="doc3" class="yui-t2">
10    
11    <div id="bd">
12         <div id="yui-main">
13         <div class="yui-b"><div class="yui-g">
14
15 <h1>MARC acquisition system</h1>
16 <h4>Import into the reservoir</h4>
17
18 <!-- TMPL_IF name="uploadmarc" -->
19 <p>Import results :</p>
20 <ul>
21         <li><!-- TMPL_VAR name="imported" --> imported records</li>
22         <li><!-- TMPL_VAR name="alreadyindb" --> not imported because already in catalog</li>
23         <li><!-- TMPL_VAR name="alreadyinfarm" --> not imported because already in the reservoir</li>
24         <li><!-- TMPL_VAR name="notmarcrecord" --> not imported because they seem not to be in MARC format (or ISBN/ISSN missing) !</li>
25         <li><!-- TMPL_VAR name="total" -->  records parsed</li>
26         <li><a href="/cgi-bin/koha/admin-home.pl">Back</a></li>
27 </ul>
28 <!-- TMPL_ELSE -->
29 <ul>
30         <li>Select a file to import into the reservoir. It will be parsed, and for each ISBN found, a new baby will be created in the reservoir.</li>
31         <li>If an ISBN already exists in the reservoir, you can choose whether to ignore the new one or overwrite the old one.</li>
32         <li>You can enter a name for this import. It may be useful, when creating a biblio, to remember where the suggested MARC data comes from!</li>
33         <li>Of course, if the ISBN already exists in the active DB, the biblio will be ignored.</li>
34 </ul>
35 <form method="post" action="<!-- TMPL_VAR name="SCRIPT_NAME" -->" enctype="multipart/form-data">
36 <table>
37         <tr>
38                 <th scope="row"><label for="uploadmarc">Select the file to import: </label></th>
39                 <td>
40                         <input type="file" id="uploadmarc" name="uploadmarc" /><br />
41                 </td>
42         </tr>
43         <tr>
44                 <th scope="row"><label for="filename">Name of this import: </label></th>
45                 <td>
46                         <input type="text" id="filename" name="filename" />
47                 </td>
48         </tr>
49         <tr>
50                 <th scope="row"><label for="syntax">Character encoding: </label></th>
51                 <td>
52                         <select name="syntax" id="syntax"><option value="MARC21">MARC21</option><option value="UNIMARC">UNIMARC</option></select>
53                 </td>
54         </tr>
55         <tr>
56                 <th scope="row" rowspan="2">If ISBN is already in the reservoir: </th>
57                 <td><input type="radio" name="overwrite_biblio" value="0" checked="checked" />Ignore this one, keep the existing one</td></tr>
58 <tr><td>
59                         <input type="radio" name="overwrite_biblio" value="1" />Overwrite the existing one with this</td>
60         </tr>
61 </table><input type="submit" value="Import" />
62 </form>
63 <!-- /TMPL_IF -->
64
65 </div>
66 </div>
67 </div>
68
69 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
70 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->