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.
50 lines
1.8 KiB
Cheetah
50 lines
1.8 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Member Search › <!-- TMPL_VAR name="bookselname" --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
|
|
<script type="text/javascript">
|
|
<!--
|
|
|
|
function add_member(subscriptionid,borrowernumber){
|
|
var myurl = "routing.pl?subscriptionid="+subscriptionid+"&borrowernumber="+borrowernumber+"&op=add";
|
|
window.opener.location.href = myurl;
|
|
}
|
|
|
|
//-->
|
|
</script>
|
|
|
|
<div class="popup-block">
|
|
<h1>Member Search</h1>
|
|
|
|
<p>
|
|
<form name="search" action="/cgi-bin/koha/serials/member-search.pl" method="post">
|
|
<input type="text" name="member" size="30" />
|
|
<input type="hidden" name="subscriptionid" value="<!-- TMPL_VAR NAME="subscriptionid" -->">
|
|
<input type="submit" class="button" value="Search" />
|
|
</form>
|
|
</p>
|
|
<!-- TMPL_IF NAME="memberloop" -->
|
|
<div class="searchresults">
|
|
<table cellspacing="0" cellpadding="0" border="0" width="480" class="collapse">
|
|
<tr><th class="cell-header">Name</th>
|
|
<th class="cell-header">Location</th>
|
|
<th class="cell-header">Add</th></tr>
|
|
<!-- TMPL_LOOP NAME="memberloop" -->
|
|
<tr><td class="cell"><!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></td>
|
|
<td class="cell"><!-- TMPL_VAR NAME="streetaddress" --></td>
|
|
<td class="cell"><a onclick="add_member(<!-- TMPL_VAR
|
|
NAME="subscriptionid" -->,<!-- TMPL_VAR NAME="borrowernumber" -->); return false" href="/cgi-bin/koha/serials/routing.pl?subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->&borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&op=add">Add</a></td></tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table></td></tr>
|
|
</table>
|
|
</div>
|
|
<!-- TMPL_ELSE -->
|
|
<!-- TMPL_IF NAME="member" -->
|
|
<p>No results found</p>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_IF -->
|
|
<br />
|
|
<p><a href="javascript:window.close()" class="button">Close</a></p>
|
|
</div>
|
|
|
|
<!-- TMPL_INCLUDE NAME="popup-bottom.inc" -->
|