memberentryC.tmpl:add test to modify link name
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / members / member.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Member search result<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <!-- TMPL_INCLUDE NAME="menus.inc" -->
4 <!-- TMPL_INCLUDE NAME="menu-members.inc" -->
5
6 <h1>Member Search Results</h1>
7
8 <!-- TMPL_IF NAME="resultsloop" -->
9         <table>
10         <tr>
11                 <th>Card</th>
12                 <th>Name</th>
13                 <th>Cat</th>
14                 <th>Address</th>
15                 <th>OD/Issues</th>
16                 <th>Charges</th>
17                 <th>Notes</th>
18         </tr>
19         <!-- TMPL_LOOP NAME="resultsloop" -->
20         <tr>
21                 <td><!-- TMPL_VAR NAME="cardnumber" --></td>
22                 <td><a href="/cgi-bin/koha/members/moremember.pl?bornum=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></a> </td>
23                 <td><!-- TMPL_VAR NAME="categorycode" --></td>
24                 <td><!-- TMPL_VAR NAME="streetaddress" --> <!-- TMPL_VAR NAME=city --></td>
25                 <td><!-- TMPL_VAR NAME="odissue" --></td>
26                 <td><!-- TMPL_VAR NAME="fines" --></td>
27                 <td><!-- TMPL_VAR NAME="borrowernotes" --></td>
28         </tr>
29     <!-- /TMPL_LOOP -->
30 </table>
31 <!-- TMPL_ELSE --><p>No results found</p><!-- /TMPL_IF -->
32
33 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->