fix XHTML syntax error.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / barcodes / printerConfig.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Printer Configuration</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!-- TMPL_INCLUDE NAME="menus.inc" -->
5 <!-- TMPL_INCLUDE NAME="menu-barcodes.inc" -->
6
7
8         <h1>Printer Configuration</h1>
9         <h3>Set printer configuration corresponding to your environment</h3>
10         <ul>
11                 <li>Set width and height of the label that you are going to work with.</li>
12                 <li>Set your system's default DPI.</li>
13                 <li>Set the page type.</li>
14                 <li>Select how many columns and rows are in your page type.</li>
15                 <li>Set left- and bottom-margins of the page that you are going to use. This parameter will help to center the barcodes on the labels.</li>
16         </ul>
17         <br>
18         <form id="formulario" method="post" action="<!-- TMPL_VAR NAME="SCRIPT_NAME" -->" name="form1">
19                 <input type="hidden" name="saveSettings" value="1" />
20                 <table>
21                         <tr>
22                                 <th scope="row">
23                                         Label width (Expressed in mm)
24                                 </th><td> 
25                                         <input id="labelWidth" type="text" name="labelWidth" size="5"
26                                                value="<!-- TMPL_VAR NAME="LABEL_WIDTH" -->">
27                                 </td></tr>
28                                 <th scope="row">
29                                         Label heigth (Expressed in mm)
30                                 </th><td> 
31                                         <input id="labelHeigth" type="text" name="labelHeigth" size="5"
32                                                value="<!-- TMPL_VAR NAME="LABEL_HEIGTH" -->">
33                                 </td></tr>
34                                 <th scope="row">
35                                         System dpi
36                                 </th><td>
37                                         <input id="systemDpi" type="text" name="systemDpi" size="5"
38                                                value="<!-- TMPL_VAR NAME="SYSTEM_DPI" -->">
39                                 </td></tr>
40                                 <th scope="row">
41                                         Page Type
42                                 </th>   <td>
43                                         <select name="pageType" id="pageType" size="1">
44                                                 <!-- TMPL_IF name="A4" -->
45                                                         <option value="A4" selected>A4</option>
46                                         <!-- TMPL_ELSE -->
47                                                         <option value="A4">A4</option>
48                                                 <!-- /TMPL_IF -->
49                                                 <!-- TMPL_IF name="Letter" -->
50                                                         <option value="Letter" selected>Letter</option>
51                                         <!-- TMPL_ELSE -->
52                                                         <option value="Letter">Letter</option>
53                                                 <!-- /TMPL_IF -->
54                                                 <!-- TMPL_IF name="Legal" -->
55                                                         <option value="Legal" selected>Legal</option>
56                                         <!-- TMPL_ELSE -->
57                                                         <option value="Legal">Legal</option>
58                                                 <!-- /TMPL_IF -->
59                             </select>
60                                 </td></tr>
61                                 <th scope="row">
62                                         Columns
63                                 </th>  <td>
64                                         <input id="columns" type="text" name="columns" size="5"
65                                                value="<!-- TMPL_VAR NAME="COLUMNS" -->">
66                                 </td></tr>
67                                 <th scope="row">
68                                         Rows
69                                 </th>   <td>
70                                         <input id="rows" type="text" name="rows" size="5"
71                                                value="<!-- TMPL_VAR NAME="ROWS" -->">
72                                 </td></tr>
73                                 <th scope="row">
74                                         Margin Bottom (Expressed in mm)
75                                 </th>   <td>
76                                         <input id="marginBottom" type="text" name="marginBottom" size="5"
77                                                value="<!-- TMPL_VAR NAME="MARGIN_TOP" -->">
78                                 </td></tr>
79                                 <th scope="row">
80                                         Margin Left (Expressed in mm)
81                                 </th>   <td>
82                                         <input id="marginLeft" type="text" name="marginLeft" size="5"
83                                                value="<!-- TMPL_VAR NAME="MARGIN_LEFT" -->">
84                                 </td></tr>
85                         </table><input type="submit" value="Save Settings" />
86         </form>
87
88 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->