Koha/koha-tmpl/intranet-tmpl/prog/en/members/member-flags.tmpl
kados 5f4542992a This is a minor change, but affects all templates:
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00

32 lines
1.3 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Set Privileges for <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!-- TMPL_INCLUDE NAME="menu-members.inc" -->
<form method="post" action="/cgi-bin/koha/members/member-flags.pl">
<input type="hidden" name="member" value="<!-- TMPL_VAR NAME="member" -->" />
<input type="hidden" name="newflags" value="1" />
<h1>Set Privileges for <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></h1>
<table>
<tr><th scope="col">Flag</th><th scope="col">Name</th><th scope="col">Description</th></tr>
<!-- TMPL_LOOP NAME="loop" -->
<tr>
<td>
<input type="checkbox" id="flag-<!-- TMPL_VAR NAME="bit" -->" name="flag-<!-- TMPL_VAR NAME="bit" -->" <!-- TMPL_VAR NAME="checked" --> />
</td>
<td>
<label for="flag-<!-- TMPL_VAR NAME="bit" -->"><!-- TMPL_VAR NAME="flag" --></label>
</td>
<td>
<!-- TMPL_VAR NAME="flagdesc" -->
</td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<input type="submit" value="Set Flags" />
</form>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->