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