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