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