More changes to implement jQuery upgrade.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-edit-template.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><title>Koha &rsaquo; Tools &rsaquo; Labels</title>
2 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
3 </head>
4 <body>
5 <!-- TMPL_INCLUDE NAME="header.inc" -->
6 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
7
8 <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; <a href="/cgi-bin/koha/labels/label-templates.pl">Label Templates</a> &rsaquo; Edit Label Template</div>
9
10 <div id="doc3" class="yui-t2">
11    
12    <div id="bd">
13         <div id="yui-main">
14         <div class="yui-b">
15 <form name="input" action="/cgi-bin/koha/labels/label-save-template.pl" method="get">
16
17 <div class="yui-g">
18 <h3>Edit Label Template</h3>
19 <div class="yui-u first">
20 <fieldset class="rows"><legend>Template Settings</legend>
21
22 <ol>
23 <li><span class="label">Template ID: <!-- TMPL_VAR NAME="tmpl_id" --> </span></li>
24         <li><label for="tmpl_code">Template Code:</label> <input type="text"  size="40" name="tmpl_code" id="tmpl_code" value="<!-- TMPL_VAR NAME="tmpl_code" -->" /></li>
25         <li><label for="tmpl_desc">Template Description:</label> <textarea cols="40" rows="3" id="tmpl_desc" name="tmpl_desc"><!-- TMPL_VAR NAME="tmpl_desc" --></textarea></li>
26
27 <li>
28         <label for="page_width">Page Width: </label><input type="text"  size="4" name="page_width" id="page_width" value="<!-- TMPL_VAR NAME="page_width" -->" />
29 </li>
30 <li>
31         <label for="page_height">Page Height: </label><input type="text" size="4" name="page_height" id="page_height" value="<!-- TMPL_VAR NAME="page_height" -->" />
32 </li>
33 <li>
34         <label for="label_width">Label Width: </label><input type="text"  size="4" name="label_width" id="label_width" value="<!-- TMPL_VAR NAME="label_width" -->" />
35 </li>
36 <li>
37         <label for="label_height">Label Height: </label><input type="text" size="4" name="label_height" id="label_height" value="<!-- TMPL_VAR NAME="label_height" -->" />
38 </li>
39 <li>
40         <label for="topmargin">Top Page Margin: </label><input type="text" size="4" name="topmargin" id="topmargin" value="<!-- TMPL_VAR NAME="topmargin" -->" />
41 </li>
42 <li>
43         <label for="leftmargin">Left Page Margin: </label><input type="text" size="4" name="leftmargin" id="leftmargin" value="<!-- TMPL_VAR NAME="leftmargin" -->" />
44 </li>
45 </ol>
46 </fieldset>
47 </div>
48 <div class="yui-u">
49 <fieldset class="rows">
50 <ol>
51
52 <li>
53         <label for="cols">Number of Columns: </label><input type="text" size="4" name="cols" id="cols" value="<!-- TMPL_VAR NAME="cols" -->" />
54 </li>
55 <li>
56         <label for="rows">Number of Rows: </label><input type="text" size="4" name="rows" id="rows" value="<!-- TMPL_VAR NAME="rows" -->" />
57 </li>
58 <li>
59         <label for="colgap">Gap between Columns: </label><input type="text" size="4" name="colgap" id="colgap" value="<!-- TMPL_VAR NAME="colgap" -->" />
60 </li>
61 <li>
62         <label for="rowgap">Gap between Rows: </label><input type="text" size="4" name="rowgap" id="rowgap" value="<!-- TMPL_VAR NAME="rowgap" -->" />
63
64 </li>
65
66 <li><label for="units">Units: </label><select id="units" name="units">
67     <!-- TMPL_LOOP NAME="units" -->
68         <!-- TMPL_IF NAME="selected" -->
69             <option value="<!-- TMPL_VAR NAME="unit" -->" selected="selected">
70         <!-- TMPL_ELSE -->
71             <option value="<!-- TMPL_VAR NAME="unit" -->">
72         <!-- /TMPL_IF --><!-- TMPL_VAR NAME="desc" --></option>
73     <!-- /TMPL_LOOP -->
74 </select></li>
75
76 <li><label for="prof_id">Profile: </label>
77 <!-- TMPL_IF NAME="proflist" -->
78     <select id="prof_id" name="prof_id">
79     <!-- TMPL_LOOP NAME="proflist" -->
80         <!-- TMPL_IF NAME="selected" -->
81             <option value="<!-- TMPL_VAR NAME="prof_id" -->" selected="selected">
82         <!-- TMPL_ELSE -->
83             <option value="<!-- TMPL_VAR NAME="prof_id" -->">
84         <!-- /TMPL_IF --><!-- TMPL_VAR NAME="printername" -->/<!-- TMPL_VAR NAME="paper_bin" --></option>
85     <!-- /TMPL_LOOP -->
86     </select>
87 <!-- TMPL_ELSE -->
88     None Defined
89 <!-- /TMPL_IF -->
90 </li>
91
92 <li><label for="fonts">Font: </label><select id="fonts" name="fonts">
93     <!-- TMPL_LOOP NAME="fonts" -->
94         <!-- TMPL_IF NAME="selected" -->
95             <option value="<!-- TMPL_VAR NAME="font" -->" selected="selected">
96         <!-- TMPL_ELSE -->
97             <option value="<!-- TMPL_VAR NAME="font" -->">
98         <!-- /TMPL_IF --><!-- TMPL_VAR NAME="name" --></option>
99     <!-- /TMPL_LOOP -->
100 </select></li>
101
102 <li><label for="fontsize">Font Size:</label> <input type="text" id="fontsize" name="fontsize"  size="1" value="<!-- TMPL_VAR NAME="fontsize" -->" /></li>
103
104 <li><label for="active">Active: </label>
105 <!-- TMPL_IF NAME="active" -->
106 <input type="checkbox" name="active" id="active" checked="checked" />
107 <!-- TMPL_ELSE -->
108 <input type="checkbox" name="active" id="active" />
109 <!-- /TMPL_IF -->
110         <input type="hidden" name="tmpl_id" value="<!-- TMPL_VAR NAME="tmpl_id" -->" /></li>
111
112 </ol></fieldset>
113 </div>
114 </div><div class="yui-g">
115 <fieldset class="action">
116         <input type="submit" value="Save" /> <a class="cancel" href="/cgi-bin/koha/labels/label-save-template.pl">Cancel</a>
117 </fieldset></div>
118 </form>
119
120 </div>
121 </div>
122 <div class="yui-b">
123 <!-- TMPL_INCLUDE NAME="labels-menu.inc" -->
124 </div>
125 </div>
126 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->