Beginning work on Calendar compatibility fixes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / 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 method="post" action="<!-- TMPL_VAR NAME="SCRIPT_NAME" -->" name="form1">
14                 <input type="hidden" name="saveSettings" value="1" />
15                 <fieldset class="rows"><ol>
16                         <li>
17                                 <label for="labelWidth">
18                                         Label width (Expressed in mm): </label> 
19                                         <input id="labelWidth" type="text" name="labelWidth" size="5" value="<!-- TMPL_VAR NAME="LABEL_WIDTH" -->">
20                                 </li>
21                                 <li>
22                                 <label for="labelHeigth">
23                                         Label heigth (Expressed in mm): </label> 
24                                         <input id="labelHeigth" type="text" name="labelHeigth" size="5" value="<!-- TMPL_VAR NAME="LABEL_HEIGTH" -->">
25                                 </li>
26                                 <li>
27                                 <label for="systemDpi">
28                                         System dpi: </label>
29                                         <input id="systemDpi" type="text" name="systemDpi" size="5" value="<!-- TMPL_VAR NAME="SYSTEM_DPI" -->">
30                                 </li>
31                                 <li>
32                                 <label for="pageType">
33                                         Page Type: </label>     
34                                         <select name="pageType" id="pageType" size="1">
35                                                 <!-- TMPL_IF name="A4" -->
36                                                         <option value="A4" selected="selected">A4</option>
37                                         <!-- TMPL_ELSE -->
38                                                         <option value="A4">A4</option>
39                                                 <!-- /TMPL_IF -->
40                                                 <!-- TMPL_IF name="Letter" -->
41                                                         <option value="Letter" selected="selected">Letter</option>
42                                         <!-- TMPL_ELSE -->
43                                                         <option value="Letter">Letter</option>
44                                                 <!-- /TMPL_IF -->
45                                                 <!-- TMPL_IF name="Legal" -->
46                                                         <option value="Legal" selected="selected">Legal</option>
47                                         <!-- TMPL_ELSE -->
48                                                         <option value="Legal">Legal</option>
49                                                 <!-- /TMPL_IF -->    </select>
50                                 </li>
51                                 <li>
52                                 <label for="columns">
53                                         Columns: </label>  
54                                         <input id="columns" type="text" name="columns" size="5" value="<!-- TMPL_VAR NAME="COLUMNS" -->">
55                                 </li>
56                                 <li>
57                                 <label for="rows">
58                                         Rows: </label>   
59                                         <input id="rows" type="text" name="rows" size="5" value="<!-- TMPL_VAR NAME="ROWS" -->">
60                                 </li>
61                                 <li>
62                                 <label for="marginBottom">
63                                         Margin Bottom (Expressed in mm): </label>   
64                                         <input id="marginBottom" type="text" name="marginBottom" size="5" value="<!-- TMPL_VAR NAME="MARGIN_TOP" -->">
65                                 </li>
66                                 <li>
67                                 <label for="marginLeft">
68                                         Margin Left (Expressed in mm): </label>   
69                                         <input id="marginLeft" type="text" name="marginLeft" size="5" value="<!-- TMPL_VAR NAME="MARGIN_LEFT" -->">
70                                 </li>
71                         </ol></fieldset>
72                         <fieldset class="action"><input type="submit" value="Save Settings" /></fieldset>
73         </form>
74
75 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->