5f4542992a
previously, it wasn't possible to insert anything into the <head> on an individual template unless it was the title of the page. Now, the structure is a bit more flexible to allow additional head elements to be included.
20 lines
694 B
Cheetah
20 lines
694 B
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Serials › Search for Supplier</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
|
|
<script language="Javascript">
|
|
|
|
function GetIt(aqbooksellerid,name)
|
|
{
|
|
opener.document.f.aqbooksellerid.value = aqbooksellerid;
|
|
opener.document.f.aqbooksellername.value = name;
|
|
window.close();
|
|
}
|
|
</script>
|
|
|
|
<h1>Search supplier for serial subscription</h1>
|
|
<form action="/cgi-bin/koha/serials/acqui-search-result.pl" method="POST">
|
|
<label for="text">Supplier name : </label>
|
|
<input id="text" type="text" size="25" name="supplier">
|
|
<input type="submit" class="button serial" value="OK">
|
|
</form>
|