07eeb4b187
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
67 lines
2 KiB
Text
67 lines
2 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Serials › Search results</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script type="text/javascript" language="javascript">
|
|
//<![CDATA[
|
|
function GetIt(bibno,title)
|
|
{
|
|
title = title.parents('tr').find('.title').text();
|
|
opener.document.f.biblionumber.value = bibno;
|
|
opener.document.f.title.value = title;
|
|
window.close();
|
|
}
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body id="ser_result" class="ser">
|
|
|
|
<div id="doc" class="yui-t7">
|
|
<div id="bd">
|
|
|
|
|
|
[% IF ( total ) %]
|
|
<h1>Search results from [% from %] to [% to %] of [% total %]</h1>
|
|
<table>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Publisher</th>
|
|
<th>Publication year</th>
|
|
<th>ISSN</th>
|
|
<th> </th>
|
|
</tr>
|
|
[% FOREACH resultsloo IN resultsloop %]
|
|
<tr>
|
|
<td class="title">[% resultsloo.title |html %] [% resultsloo.subtitle |html %]
|
|
</td>
|
|
<td>
|
|
[% resultsloo.author |html %]
|
|
</td>
|
|
<td>
|
|
[% resultsloo.publishercode |html %]
|
|
</td>
|
|
<td>
|
|
[% resultsloo.publicationyear |html %]
|
|
</td>
|
|
<td>
|
|
[% resultsloo.issn |html %]
|
|
</td>
|
|
|
|
<td><a href="#" onclick="GetIt('[% resultsloo.biblionumber %]',$(this));" title="Choose this record">Choose</a></td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
[% ELSE %]
|
|
<h2>No results found for <b>[% query %]</b></h2>
|
|
[% END %]
|
|
[% IF ( displayprev ) %]
|
|
<a href="/cgi-bin/koha/serials/subscription-bib-search.pl?op=do_search&type=intranet&startfrom=[% startfromprev |url %]&q=[% query |url %]"><<</a>
|
|
[% END %]
|
|
[% IF ( displaynext ) %]
|
|
<a href="/cgi-bin/koha/serials/subscription-bib-search.pl?op=do_search&type=intranet&startfrom=[% startfromnext |url %]&q=[% query |url %]">>></a>
|
|
[% END %]
|
|
<p><a href="subscription-bib-search.pl">Search for another record</a></p>
|
|
<fieldset class="action"><a class="button close" href="#">Close</a></fieldset>
|
|
</div>
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|