Bug 15211: adding Tools section sidebar to label creator
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-edit-template.tt
1     [% INCLUDE 'doc-head-open.inc' %]
2     <title>Koha &rsaquo; Tools &rsaquo; Label creator &rsaquo; Templates &rsaquo; [% IF ( template_id ) %]Edit ([% template_id %])[% ELSE %]New[% END %]</title>
3     [% INCLUDE 'doc-head-close.inc' %]
4         <script type="text/javascript">
5         //<![CDATA[
6                 $(document).ready(function(){
7                 var selectedUnit = $("#units option:selected").attr("value");
8                 var unitfields = $("#page_height,#page_width,#label_width,#label_height,#top_margin,#left_margin,#top_text_margin,#left_text_margin,#col_gap,#row_gap");
9                 $(unitfields).after("<span class=\"unit\">"+getUnit(selectedUnit)+"</span>");
10                 $("#units").change(function(){
11                         $(".unit").html(getUnit($(this).val()));
12                 });
13                 function getUnit(unit){
14                         switch(unit){
15                                 case "POINT":
16                                         var unit = " pt";
17                                         break;
18                                 case "AGATE":
19                                         var unit = " ag";
20                                         break;
21                                 case "INCH":
22                                         var unit = " in";
23                                         break;
24                                 case "MM":
25                                         var unit = " mm";
26                                         break;
27                                 case "CM":
28                                         var unit = " cm";
29                                         break;
30                                 default:
31                                         var unit = "";
32                         }
33                         return unit;
34                 }
35                 });
36         //]]>
37         </script>
38 </head>
39 <body id="labels_label-edit-template" class="tools labels">
40     [% INCLUDE 'header.inc' %]
41     [% INCLUDE 'cat-search.inc' %]
42     <div id="breadcrumbs">
43         <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
44         <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
45         <a href="/cgi-bin/koha/labels/label-home.pl">Label creator</a> &rsaquo;
46         <a href="/cgi-bin/koha/labels/label-manage.pl?label_element=template">Templates</a> &rsaquo;
47         [% IF ( template_id ) %]Edit ([% template_id %])[% ELSE %]New[% END %]
48     </div>
49     <div id="doc3" class="yui-t2">
50         <div id="bd">
51             <div id="yui-main">
52                 <div class="yui-b">
53                     <div class="yui-g">
54                     [% INCLUDE 'labels-toolbar.inc' %]
55                         <div class="yui-u first">
56
57                         </div>
58                     </div>
59                     <form name="input" action="/cgi-bin/koha/labels/label-edit-template.pl" method="get">
60                     <div class="yui-g">
61                         <h3>Edit label template</h3>
62                         <div class="yui-u first">
63                             <fieldset class="rows">
64                                 <ol>
65                                     <li>
66                                         <span class="label">Template ID:</span>[% IF ( template_id ) %][% template_id %][% ELSE %]N/A[% END %]
67                                     </li>
68                                     <li>
69                                         <label for="template_code">Template code:</label>
70                                         <input type="text" size="30" maxlength="43" name="template_code" id="template_code" value="[% template_code %]" />
71                                     </li>
72                                     <li>
73                                         <label for="template_desc">Template description:</label>
74                                         <textarea cols="30" rows="3" id="template_desc" name="template_desc">[% template_desc %]</textarea>
75                                     </li>
76                                                                         <li>
77                                  <label for="units">Units:</label>
78                                  <select id="units" name="units">
79                                  [% FOREACH unit IN units %]
80
81                                                                         [% IF ( unit.selected ) %]
82                                                                         <option value="[% unit.type %]" selected="selected">
83                                                                         [% ELSE %]
84                                                                         <option value="[% unit.type %]">
85                                                                         [% END %]
86
87                                  [% unit.desc %]
88                                  </option>
89                                  [% END %]
90                                  </select>
91                              </li>
92                                     <li>
93                                         <label for="page_height">Page height:</label>
94                                         <input type="text" size="4" name="page_height" id="page_height" value="[% page_height %]" />
95                                     </li>
96                                     <li>
97                                         <label for="page_width">Page width:</label>
98                                         <input type="text" size="4" name="page_width" id="page_width" value="[% page_width %]" />
99                                     </li>
100                                     <li>
101                                         <label for="label_width">Label width:</label>
102                                         <input type="text" size="4" name="label_width" id="label_width" value="[% label_width %]" />
103                                     </li>
104                                     <li>
105                                         <label for="label_height">Label height:</label>
106                                         <input type="text" size="4" name="label_height" id="label_height" value="[% label_height %]" />
107                                     </li>
108
109                                 </ol>
110                             </fieldset>
111                         </div>
112                         <div class="yui-u">
113                             <fieldset class="rows">
114                                 <ol><li>
115                                     <label for="top_margin">Top page margin:</label>
116                                     <input type="text" size="4" name="top_margin" id="top_margin" value="[% top_margin %]" />
117                                 </li>
118                                 <li>
119                                     <label for="left_margin">Left page margin:</label>
120                                     <input type="text" size="4" name="left_margin" id="left_margin" value="[% left_margin %]" />
121                                 </li>
122                                     <li>
123                                         <label for="top_text_margin">Top text margin:</label>
124                                         <input type="text" size="4" name="top_text_margin" id="top_text_margin" value="[% top_text_margin %]" />
125                                     </li>
126                                     <li>
127                                         <label for="left_text_margin">Left text margin:</label>
128                                         <input type="text" size="4" name="left_text_margin" id="left_text_margin" value="[% left_text_margin %]" />
129                                     </li>
130                                     <li>
131                                         <label for="cols">Number of columns:</label>
132                                         <input type="text" size="4" name="cols" id="cols" value="[% cols %]" />
133                                     </li>
134                                     <li>
135                                         <label for="rows">Number of rows:</label>
136                                         <input type="text" size="4" name="rows" id="rows" value="[% rows %]" />
137                                     </li>
138                                     <li>
139                                         <label for="col_gap">Gap between columns:</label>
140                                         <input type="text" size="4" name="col_gap" id="col_gap" value="[% col_gap %]" />
141                                     </li>
142                                     <li>
143                                         <label for="row_gap">Gap between rows:</label>
144                                         <input type="text" size="4" name="row_gap" id="row_gap" value="[% row_gap %]" />
145                                     </li>
146
147                                     <li>
148                                         <label for="profile_id">Profile:</label>
149                                         [% IF ( profile_list ) %]
150                                         <select id="profile_id" name="profile_id">
151                                         [% FOREACH profile_lis IN profile_list %]
152 [% IF ( profile_lis.selected ) %]
153 <option value="[% profile_lis.profile_id %]" selected="selected">
154 [% ELSE %]
155 <option value="[% profile_lis.profile_id %]">
156 [% END %]
157                                         [% profile_lis.printer_name %]/[% profile_lis.paper_bin %]
158                                         </option>
159                                         [% END %]
160                                         </select>
161                                         [% ELSE %]
162                                         <a href="/cgi-bin/koha/labels/label-edit-profile.pl?op=new">Click here to define a printer profile.</a>
163                                         [% END %]
164                                     </li>
165                                 </ol>
166                             </fieldset>
167                         </div>
168                     </div>
169                     <div class="yui-g">
170                         <fieldset class="action">
171                             <input type="submit" class="submit" value="Save" /><a class="cancel" href="/cgi-bin/koha/labels/label-manage.pl?label_element=template">Cancel</a>
172                             <input type="hidden" name="op" value="save" />
173                             [% IF ( template_id ) %]
174                             <input type="hidden" name="template_id" value="[% template_id %]" />
175                             [% END %]
176                         </fieldset>
177                     </div>
178                 </form>
179             </div>
180         </div>
181         <div class="yui-b">
182           [% INCLUDE 'tools-menu.inc' %]
183         </div>
184     </div>
185     [% INCLUDE 'intranet-bottom.inc' %]