Koha/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import.tmpl
Owen Leonard fefe64cf55 More work on standardizing toolbars. Also standardizing form markup in /tools
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-10-20 17:05:10 -05:00

74 lines
2.9 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Cataloging &rsaquo; MARC Import</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!-- TMPL_INCLUDE NAME="cat-search.inc" -->
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/reports/tools-home.pl">Tools</a> &rsaquo; MARC Import</div>
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<h1>MARC acquisition system</h1>
<!-- TMPL_IF name="uploadmarc" -->
<p>Import results :</p>
<ul>
<li><!-- TMPL_VAR name="imported" --> imported records</li>
<li><!-- TMPL_VAR name="alreadyindb" --> not imported because already in catalog</li>
<li><!-- TMPL_VAR name="alreadyinfarm" --> not imported because already in the reservoir</li>
<li><!-- TMPL_VAR name="notmarcrecord" --> not imported because they seem not to be in MARC format (or ISBN/ISSN missing) !</li>
<li><!-- TMPL_VAR name="total" --> records parsed</li>
<li><a href="/cgi-bin/koha/admin-home.pl">Back</a></li>
</ul>
<!-- TMPL_ELSE -->
<ul>
<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>
<li>If an ISBN already exists in the reservoir, you can choose whether to ignore the new one or overwrite the old one.</li>
<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>
<li>Of course, if the ISBN already exists in the active DB, the biblio will be ignored.</li>
</ul>
<form method="post" action="<!-- TMPL_VAR name="SCRIPT_NAME" -->" enctype="multipart/form-data">
<fieldset class="rows">
<legend>Import into the reservoir</legend><ol>
<li>
<label for="uploadmarc">Select the file to import: </label>
<input type="file" id="uploadmarc" name="uploadmarc" /><br />
</li>
<li>
<label for="filename">Name of this import: </label>
<input type="text" id="filename" name="filename" />
</li>
<li>
<label for="syntax">Character encoding: </label>
<select name="syntax" id="syntax"><option value="MARC21">MARC21</option><option value="UNIMARC">UNIMARC</option></select>
</li>
</ol></fieldset>
<fieldset class="rows">
<legend>If ISBN is already in the reservoir:</legend><ol><li class="radio">
<input type="radio" id="overwrite_bibliono" name="overwrite_biblio" value="0" checked="checked" /><label for="overwrite_bibliono">Ignore this one, keep the existing one</label></li>
<li class="radio">
<input type="radio" id="overwrite_biblioyes" name="overwrite_biblio" value="1" /><label for="overwrite_biblioyes">Overwrite the existing one with this</label>
</li></ol></fieldset><input type="submit" value="Import" />
</form>
<!-- /TMPL_IF -->
</div>
</div>
<div class="yui-b">
<!-- TMPL_INCLUDE NAME="tools-menu.inc" -->
</div>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->