Koha/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-templates.tmpl
2007-08-30 15:50:54 -05:00

67 lines
No EOL
1.8 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><title>Koha &rsaquo; Labels</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!-- TMPL_INCLUDE NAME="menu-labels.inc" -->
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b"><div class="yui-g">
<!-- TMPL_INCLUDE NAME="label-status.inc" -->
<!-- TMPL_IF NAME="resultsloop" -->
<h2>Templates</h2>
<form name="input" action="/cgi-bin/koha/labels/label-templates.pl" method="get">
<table>
<tr>
<th>Template Code</th>
<th>Description</th>
<th>Edit</th>
<th>Delete</th>
<th>Active</th>
</tr>
<!-- TMPL_LOOP NAME="resultsloop" -->
<tr>
<td>
<!-- TMPL_VAR NAME="tmpl_code" -->
</td>
<td>
<!-- TMPL_VAR NAME="tmpl_desc" -->
</td>
<td>
<a href="/cgi-bin/koha/labels/label-edit-template.pl?tmpl_id=<!-- TMPL_VAR NAME="tmpl_id" -->">Edit</a>
</td>
<td>
<a href="/cgi-bin/koha/labels/label-templates.pl?op=delete&tmpl_id=<!-- TMPL_VAR NAME="tmpl_id" -->">Delete</a>
</td>
<td>
<input type="radio" name="tmpl_id" value="<!-- TMPL_VAR NAME="tmpl_id" -->"
<!-- TMPL_IF NAME="active" -->
checked
<!-- /TMPL_IF -->
>
</td>
</tr>
<!-- /TMPL_LOOP -->
<tr><td colspan="5" align="right">
<input class="button" type="submit" value="Set Active Template">
<input type="hidden" name=op value="set_active_template">
</td></tr>
</table>
</form>
<!-- /TMPL_IF -->
<a href="/cgi-bin/koha/labels/label-create-template.pl?op=blank">Create New Label Template</a>
</div>
</div>
</div>
<!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->