Moving </head><body> into body of templates so that js and css can be embedded per...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / member-search.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Member Search &rsaquo; <!-- TMPL_VAR name="bookselname" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6
7 <script type="text/javascript">
8 <!--
9
10 function add_member(subscriptionid,borrowernumber){
11      var myurl = "routing.pl?subscriptionid="+subscriptionid+"&borrowernumber="+borrowernumber+"&op=add";
12      window.opener.location.href = myurl;
13 }
14
15 //-->
16 </script>
17
18 <div class="popup-block">
19 <h1>Member Search</h1>
20
21 <p>
22 <form name="search" action="/cgi-bin/koha/serials/member-search.pl" method="post">
23 <input type="text" name="member" size="30" />
24 <input type="hidden" name="subscriptionid" value="<!-- TMPL_VAR NAME="subscriptionid" -->">
25 <input type="submit" class="button" value="Search" />
26 </form>
27 </p>
28 <!-- TMPL_IF NAME="memberloop" -->
29 <div class="searchresults">
30 <table cellspacing="0" cellpadding="0" border="0" width="480" class="collapse">
31 <tr><th class="cell-header">Name</th>
32     <th class="cell-header">Location</th>
33     <th class="cell-header">Add</th></tr>
34 <!-- TMPL_LOOP NAME="memberloop" -->
35 <tr><td class="cell"><!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></td>
36     <td class="cell"><!-- TMPL_VAR NAME="streetaddress" --></td>
37     <td class="cell"><a onclick="add_member(<!-- TMPL_VAR
38 NAME="subscriptionid" -->,<!-- TMPL_VAR NAME="borrowernumber" -->); return false" href="/cgi-bin/koha/serials/routing.pl?subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->&amp;borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&amp;op=add">Add</a></td></tr>
39 <!-- /TMPL_LOOP -->
40         </table></td></tr>
41 </table>
42 </div>
43 <!-- TMPL_ELSE -->
44     <!-- TMPL_IF NAME="member" -->
45         <p>No results found</p>
46     <!-- /TMPL_IF -->
47 <!-- /TMPL_IF -->
48 <br />
49 <p><a href="javascript:window.close()" class="button">Close</a></p>
50 </div>
51
52 <!-- TMPL_INCLUDE NAME="popup-bottom.inc" -->