Koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_225a.tmpl
tipaul 421de1df64 new and modified plugins for unimarc biblio management.
note that the plugin api has been deeply modified, and should now be definitive.
It will be documented soon on the wiki.
2002-12-10 13:52:20 +00:00

23 lines
472 B
Cheetah

<html>
<head>
<title>UNIMARC Field 100 builder</title>
</head>
<body>
<form name="f_pop" onSubmit="javascript:report()">
<table>
<tr>
<td>Select a collection</td>
<td><TMPL_VAR name="collection"></td>
</tr>
<tr><td colspan=2><input type="submit" value="OK"></td></tr>
</table>
</form>
<script>
function report() {
opener.document.f.field_value[<TMPL_VAR name="index">].value= document.f_pop.f1.value;
self.close();
return false;
}
</script>
</body>
</html>