first go at moving templates to a modules/ dir
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-home.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><title>Koha &rsaquo;  Labels</title>
2 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
3 <!-- TMPL_INCLUDE NAME="menus.inc" -->
4 <!-- TMPL_INCLUDE NAME="menu-labels.inc" -->
5
6 <div id="main">
7 <!-- TMPL_INCLUDE NAME="label-status.inc" -->
8
9 <!-- TMPL_IF NAME="layout_loop" -->
10 <h2>Select a Current Layout</h2>
11 <form name="input" action="/cgi-bin/koha/labels/label-manager.pl" method="get">
12 <table>
13 <tr>
14         <th>Layout</th>
15         <th>Barcode Type</th>
16         <th>Print Type</th>
17         <th>Fields to Print</th>
18         <th>Edit</th>
19         <th>Delete</th>
20         <th>Active</th>
21 </tr>
22 <!-- TMPL_LOOP NAME="layout_loop" -->
23 <tr>
24           <td><!-- TMPL_VAR NAME="layoutname" -->  </td>
25        <td>    <!-- TMPL_VAR NAME="barcodetype" -->    </td>
26        <td>   <!-- TMPL_VAR NAME="printingtype" -->    </td>
27
28        <td>
29                 <!-- TMPL_VAR NAME="fieldlist" -->
30         </td>
31
32        <td>
33                 <a href="/cgi-bin/koha/labels/label-edit-layout.pl?layout_id=<!-- TMPL_VAR NAME="id" -->">Edit</a>
34         </td>
35         <td>
36                 <a href="/cgi-bin/koha/label-home.pl?op=delete_layout&layout_id=<!-- TMPL_VAR NAME="id"-->">Delete</a>
37         </td>
38 <td>
39 <input type="radio" name="layout_id" value="<!-- TMPL_VAR NAME="id" -->"  
40                 <!-- TMPL_IF NAME="active" -->
41  checked
42                 <!-- /TMPL_IF -->
43  >
44         </td>
45 </tr>
46
47 <!-- /TMPL_LOOP -->
48 <tr><td colspan="7" align="right">
49      <input type="submit" value="Set Active Layout">
50         <input type="hidden" name=op value="set_active_layout">
51 </table>
52 </form>
53 <!-- /TMPL_IF -->
54 <p><a href="/cgi-bin/koha/labels/label-create-layout.pl">Create New Layout</a></p>
55 </div>
56 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
57