Displaying Sort Authorised values if linked to authorisedvalue list.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / update-child.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Choose Adult category</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 </head>
6 <body>
7
8 <div id="doc" class="yui-t7">
9 <div id="bd">
10
11 <!--TMPL_IF NAME="CONFIRM" -->
12 <script language="javascript" type="text/javascript">
13 confirm_updatechild(<!-- TMPL_VAR NAME="borrowernumber" -->);
14 </script>
15 <!-- /TMPL_IF  -->
16
17 <!--TMPL_IF NAME="SUCCESS" -->
18 <script language="javascript" type="text/javascript">
19 self.opener.location.href='/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->';
20 window.close();
21 </script>
22 <!-- /TMPL_IF  -->
23
24
25
26 <!--TMPL_IF NAME="MULTI" -->
27
28 <h1> Choose Adult category </h1>
29
30 <!--TMPL_IF NAME="CAT_LOOP" -->
31 <form method="post" action="update-child.pl">
32 <table>
33 <tr>
34 <th> </th>
35 <th>CODE</th>
36 <th>DESC</th>
37 </tr>
38 <!-- TMPL_LOOP NAME="CAT_LOOP" -->
39 <tr>
40 <td>
41 <input type="radio" id="catcode" name="catcode" value="<!-- TMPL_VAR NAME="catcode" -->" />
42 <td><!-- TMPL_VAR NAME="catcode" --></td>
43 <td><b><!-- TMPL_VAR NAME="catdesc" --></b></td> 
44 </tr>
45 <!-- /TMPL_LOOP -->
46 </table>
47 <input type="hidden" name="op" value="update" />
48 <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
49 <input type="hidden" name="catcode" value="<!-- TMPL_VAR NAME="catcode" -->" />
50 <input type="hidden" name="cattype" value="<!-- TMPL_VAR NAME="cattype" -->" />
51 <input type="hidden" name="catcode_multi" value="<!-- TMPL_VAR NAME="CATCODE_MULTI" -->" />
52 <input class="submit" type="submit" value="Submit"/>
53 <script language="javascript" type="text/javascript">
54 </script>
55
56 <!--/TMPL_IF-->
57 </form>
58
59
60
61
62 </div>
63 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->