[12/40] Work on label managment interface.
[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; Tools &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/tools/tools-home.pl">Tools</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 <div class="yui-g">
34 <div class="yui-u first">
35 <h2>Printer Profiles</h2>
36 <form name="input" action="/cgi-bin/koha/labels/label-profiles.pl" method="get">
37 <!-- TMPL_IF NAME="resultsloop" -->
38 <table>
39 <tr>
40         <th>Printer Name</th>
41         <th>Paper Bin</th>
42         <th>Template Name</th>
43         <th>Offset-Horizontal</th>
44         <th>Offset-Vertical</th>
45         <th>Creep-Horizontal</th>
46         <th>Creep-Vertical</th>
47         <th>Edit</th>
48         <th>Delete</th>
49 </tr>
50 <!-- TMPL_LOOP NAME="resultsloop" -->
51 <tr>
52         <td>
53                 <!-- TMPL_VAR NAME="printername" -->
54         </td>
55         <td>
56                 <!-- TMPL_VAR NAME="paper_bin" -->
57         </td>
58         <td>
59                 <!-- TMPL_VAR NAME="tmpl_code" -->
60         </td>
61         <td>
62                 <!-- TMPL_VAR NAME="offset_horz" -->
63         </td>
64         <td>
65                 <!-- TMPL_VAR NAME="offset_vert" -->
66         </td>
67         <td>
68                 <!-- TMPL_VAR NAME="creep_horz" -->
69         </td>
70         <td>
71                 <!-- TMPL_VAR NAME="creep_vert" -->
72         </td>
73         <td>
74                 <a href="/cgi-bin/koha/labels/label-edit-profile.pl?prof_id=<!-- TMPL_VAR NAME="prof_id" -->">Edit</a>
75         </td>
76         <td>
77                 <a href="/cgi-bin/koha/labels/label-profiles.pl?" onclick="confirm_deletion(<!-- TMPL_VAR NAME="prof_id" -->); return false;">Delete</a>
78         </td>
79 </tr>
80 <!-- /TMPL_LOOP -->
81 </table>
82 </form>
83 <!-- TMPL_ELSE -->
84 No Printer Profiles currently defined.
85 </form>
86 <!-- /TMPL_IF -->
87 </div>
88 <div class="yui-u">
89     <!-- TMPL_INCLUDE NAME="label-status.inc" -->
90 </div>
91 </div>
92 </div>
93 </div>
94 <div class="yui-b">
95 <!-- TMPL_INCLUDE NAME="labels-menu.inc" -->
96 </div>
97 </div>
98 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->