First draft of programmer's templates: a stripped-down version of the templates for...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / members / member-flags.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Set Privileges for <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <form method="post" action="/cgi-bin/koha/members/member-flags.pl">
4         <input type="hidden" name="member" value="<!-- TMPL_VAR NAME="member" -->" />
5         <input type="hidden" name="newflags" value="1" />
6 <table>
7         <caption>Set Privileges for <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></caption>
8         <tr><th scope="col">Flag</th><th scope="col">Name</th><th scope="col">Description</th></tr>
9         <!-- TMPL_LOOP NAME="loop" -->
10                 <tr>
11                         <td>
12                                 <input type="checkbox" id="flag-<!-- TMPL_VAR NAME="bit" -->" name="flag-<!-- TMPL_VAR NAME="bit" -->" <!-- TMPL_VAR NAME="checked" --> />
13                         </td>
14                         <td>
15                                 <label for="flag-<!-- TMPL_VAR NAME="bit" -->"><!-- TMPL_VAR NAME="flag" --></label>
16                         </td>
17                         <td>
18                                 <!-- TMPL_VAR NAME="flagdesc" -->
19                         </td>
20                 </tr>
21         <!-- /TMPL_LOOP -->
22         </table>
23
24 <input type="submit" value="Set Flags" />
25
26 </form>
27 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->