bug 4006: change categorycode to Patron Category
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / search.tmpl
1     <form action="<!--TMPL_VAR Name="actionname"-->" method="get">
2         <fieldset class="brief">
3                                 <h3 > Filter :</h3>
4                                 <input type="hidden" name="surname" value="<!-- TMPL_VAR name="surname"-->" />
5                                 <input type="text" name="member" value="<!-- TMPL_VAR name="member"-->" /><br/>
6                                 <!-- TMPL_IF NAME="subscriptionid" -->
7                                 <input type="hidden" name="subscriptionid" value="<!-- TMPL_VAR NAME="subscriptionid" -->">
8                                 <!-- /TMPL_IF -->
9                 <label for="branchcode"> Library :</label><select name="branchcode" id="branchcode">
10         <option value="">Any</option><!-- TMPL_LOOP name="branchloop" -->
11         <!-- TMPL_IF NAME="selected" -->
12         <option value="<!-- TMPL_VAR name="value" -->" selected="selected"><!-- TMPL_VAR name="branchname" --></option><!-- TMPL_ELSE -->
13         <option value="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="branchname" --></option><!-- /TMPL_IF -->
14       <!-- /TMPL_LOOP --></select><br />
15                  <label for="categorycode"> Patron Category :</label><select name="categorycode" id="categorycode">
16         <option value="">Any</option><!-- TMPL_LOOP name="categoryloop" -->
17         <!-- TMPL_IF NAME="selected" -->
18         <option value="<!-- TMPL_VAR name="categorycode" -->" selected="selected"><!-- TMPL_VAR name="description" --></option><!-- TMPL_ELSE -->
19         <option value="<!-- TMPL_VAR name="categorycode" -->"><!-- TMPL_VAR name="description" --></option><!-- /TMPL_IF -->
20       <!-- /TMPL_LOOP --></select> <br />
21                     <input type="submit" value="Search" />
22                 </fieldset>
23             </form>