rel_3_0 moved to HEAD (introducing new files)
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / tools / breeding.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Cataloging: MARC Import<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <!-- TMPL_INCLUDE NAME="menus.inc" -->
4 <!-- TMPL_INCLUDE NAME="menu-tools.inc" -->
5
6 <h1>MARC acquisition system</h1>
7 <h4>Import into the reservoir</h4>
8
9 <!-- TMPL_IF name="uploadmarc" -->
10 <p>Import results :</p>
11 <ul>
12         <li><!-- TMPL_VAR name="imported" --> imported records</li>
13         <li><!-- TMPL_VAR name="alreadyindb" --> not imported because already in catalog</li>
14         <li><!-- TMPL_VAR name="alreadyinfarm" --> not imported because already in the reservoir</li>
15         <li><!-- TMPL_VAR name="notmarcrecord" --> not imported because they seem not to be in MARC format (or ISBN/ISSN missing) !</li>
16         <li><!-- TMPL_VAR name="total" -->  records parsed</li>
17         <li><a href="/cgi-bin/koha/admin-home.pl">Back</a></li>
18 </ul>
19 <!-- TMPL_ELSE -->
20 <ul>
21         <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>
22         <li>If an ISBN already exists in the reservoir, you can choose whether to ignore the new one or overwrite the old one.</li>
23         <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>
24         <li>Of course, if the ISBN already exists in the active DB, the biblio will be ignored.</li>
25 </ul>
26 <form method="post" action="<!-- TMPL_VAR name="SCRIPT_NAME" -->" enctype="multipart/form-data">
27 <table>
28         <tr>
29                 <th scope="row"><label for="uploadmarc">Select the file to import: </label></th>
30                 <td>
31                         <input type="file" id="uploadmarc" name="uploadmarc" /><br />
32                 </td>
33         </tr>
34         <tr>
35                 <th scope="row"><label for="filename">Name of this import: </label></th>
36                 <td>
37                         <input type="text" id="filename" name="filename" />
38                 </td>
39         </tr>
40         <tr>
41                 <th scope="row"><label for="syntax">Character encoding: </label></th>
42                 <td>
43                         <select name="syntax" id="syntax"><option value="MARC21">MARC21</option><option value="UNIMARC">UNIMARC</option></select>
44                 </td>
45         </tr>
46         <tr>
47                 <th scope="row" rowspan="2">If ISBN is already in the reservoir: </th>
48                 <td><input type="radio" name="overwrite_biblio" value="0" checked="checked" />Ignore this one, keep the existing one</td></tr>
49 <tr><td>
50                         <input type="radio" name="overwrite_biblio" value="1" />Overwrite the existing one with this</td>
51         </tr>
52 </table><input type="submit" value="Import" />
53 </form>
54 <!-- /TMPL_IF -->
55
56 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->