Adding member search to patron card generation feature
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-profiles.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Labels</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript">
5 //<![CDATA[
6 function confirm_deletion(prof_id) {
7     var original = $("#row"+prof_id).attr("class");
8     $("#row"+prof_id).attr("class","confirm");
9     var is_confirmed = confirm(_('Are you sure you want to delete this item?'));
10     if (is_confirmed) {
11         window.location = "label-profiles.pl?op=delete&amp;prof_id="+prof_id;
12     } else {
13         $("#row"+prof_id).attr("class","");
14     }
15 }
16 //]]>
17 </script>
18 </head>
19 <body>
20 <!-- TMPL_INCLUDE NAME="header.inc" -->
21 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
22
23 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/labels/label-home.pl">Labels</a> &rsaquo; Printer Profiles</div>
24
25 <div id="doc3" class="yui-t2">
26    
27    <div id="bd">
28         <div id="yui-main">
29         <div class="yui-b">
30
31 <!-- TMPL_INCLUDE NAME="tools-labels-toolbar.inc" -->
32
33 <h2>Printer Profiles</h2>
34 <form name="input" action="/cgi-bin/koha/labels/label-profiles.pl" method="get">
35 <!-- TMPL_IF NAME="resultsloop" -->
36 <table>
37 <tr>
38         <th>Printer Name</th>
39         <th>Paper Bin</th>
40         <th>Template Name</th>
41         <th>Offset-Horizontal</th>
42         <th>Offset-Vertical</th>
43         <th>Creep-Horizontal</th>
44         <th>Creep-Vertical</th>
45         <th>Edit</th>
46         <th>Delete</th>
47 </tr>
48 <!-- TMPL_LOOP NAME="resultsloop" -->
49 <tr>
50         <td>
51                 <!-- TMPL_VAR NAME="printername" -->
52         </td>
53         <td>
54                 <!-- TMPL_VAR NAME="paper_bin" -->
55         </td>
56         <td>
57                 <!-- TMPL_VAR NAME="tmpl_code" -->
58         </td>
59         <td>
60                 <!-- TMPL_VAR NAME="offset_horz" -->
61         </td>
62         <td>
63                 <!-- TMPL_VAR NAME="offset_vert" -->
64         </td>
65         <td>
66                 <!-- TMPL_VAR NAME="creep_horz" -->
67         </td>
68         <td>
69                 <!-- TMPL_VAR NAME="creep_vert" -->
70         </td>
71         <td>
72                 <a href="/cgi-bin/koha/labels/label-edit-profile.pl?prof_id=<!-- TMPL_VAR NAME="prof_id" -->">Edit</a>
73         </td>
74         <td>
75                 <a href="/cgi-bin/koha/labels/label-profiles.pl?" onclick="confirm_deletion(<!-- TMPL_VAR NAME="prof_id" -->); return false;">Delete</a>
76         </td>
77 </tr>
78 <!-- /TMPL_LOOP -->
79 </table>
80 </form>
81 <!-- TMPL_ELSE -->
82 No Printer Profiles currently defined.
83 </form>
84 <!-- /TMPL_IF -->
85
86
87 </div>
88 </div>
89 <div class="yui-b">
90 <!-- TMPL_INCLUDE NAME="labels-menu.inc" -->
91 </div>
92 </div>
93 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->