Koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_225a.tmpl

23 lines
487 B
Cheetah

<html>
<head>
<title>UNIMARC Field 225a 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>