Cleaning up label item search and results, fixing Bug 1929 (Navigation issue with...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-create-profile.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(biblionumber,itemnumber) {
7     var original = $("#row"+itemnumber).attr("class");
8     $("#row"+itemnumber).attr("class","confirm");
9     var is_confirmed = confirm(_('Are you sure you want to delete this profile?'));
10     if (is_confirmed) {
11         window.location = "additem.pl?op=delitem&biblionumber="+biblionumber+"&itemnumber="+itemnumber;
12     } else {
13         $("#row"+itemnumber).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; <a href="/cgi-bin/koha/labels/label-profiles.pl">Printer Profiles</a> &rsaquo; Create Printer Profile</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
32
33 <h3>Create Printer Profile</h3>
34 <!-- TMPL_IF NAME="dberror" -->
35 <div class="yui-g">
36 <div class="dialog alert"><h3>Error Creating Profile</h3>
37 <p>
38     <!-- TMPL_VAR NAME="errmsg" --> 
39 </p>
40 </div>
41 </div>
42 <!-- /TMPL_IF -->
43 <div class="yui-g">
44 <form name="input" action="/cgi-bin/koha/labels/label-create-profile.pl" method="get">
45 <fieldset class="rows"><legend>Profile Settings</legend>
46
47 <ol>
48
49 <li>
50     <label for="printername">Printer Name:</label> <input type="text"  size="40" name="printername" id="printername" />
51 </li>
52 <li>
53     <label for="paper_bin">Paper Bin:</label><input type="text"  size="20" name="paper_bin" id="paper_bin" />
54 </li>
55 <li>
56     <label for="tmpl_id">Template Code: </label><select id="tmpl_id" name="tmpl_id">
57     <!-- TMPL_LOOP NAME="tmpllist" -->
58         <option value="<!-- TMPL_VAR NAME="tmpl_id" -->"><!-- TMPL_VAR NAME="tmpl_code" --></option>
59     <!-- /TMPL_LOOP --></select>
60 </li>
61 <li>
62     <fieldset><legend>Offset:</legend>
63     <ol><li><label for="offset_horz">Horizontal:</label><input type="text" size="2" name="offset_horz" id="offset_horz" /></li>
64     <li><label for="offset_vert">Vertical:</label><input type="text"  size="2" name="offset_vert" id="offset_vert" /></li></ol></fieldset>
65 </li>
66 <li>
67     <fieldset><legend>Creep:</legend>
68 <ol><li>
69     <label for="creep_horz">Horizontal:</label><input type="text" size="2" name="creep_horz" id="creep_horz" />
70 </li>
71 <li>
72     <label for="creep_vert">Vertical:</label><input type="text" size="2" name="creep_vert" id="creep_vert" />
73 </li></ol>
74 </fieldset>
75 </li>
76 <li><label for="unit">Units: </label><select id="unit" name="unit">
77     <!-- TMPL_LOOP NAME="unit" -->
78         <option value="<!-- TMPL_VAR NAME="unit" -->"><!-- TMPL_VAR NAME="desc" --></option>
79     <!-- /TMPL_LOOP -->
80 </select>
81 </li>
82 </ol>
83 </fieldset>
84 <fieldset class="action">
85         <input type="submit" name="op" value="Save" /> <a class="cancel" href="/cgi-bin/koha/labels/label-profiles.pl">Cancel</a>
86 </fieldset></form></div>
87 </div>
88
89 </div>
90 <div class="yui-b">
91 <!-- TMPL_INCLUDE NAME="labels-menu.inc" -->
92 </div>
93 </div>
94 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->