Koha/koha-tmpl/intranet-tmpl/prog/en/modules/tools/printerConfig.tmpl

75 lines
2.9 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-barcodes.inc" -->
<h1>Printer Configuration</h1>
<h3>Set printer configuration corresponding to your environment</h3>
<ul>
<li>Set width and height of the label that you are going to work with.</li>
<li>Set your system's default DPI.</li>
<li>Set the page type.</li>
<li>Select how many columns and rows are in your page type.</li>
<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>
</ul>
<br />
<form method="post" action="<!-- TMPL_VAR NAME="SCRIPT_NAME" -->" name="form1">
<input type="hidden" name="saveSettings" value="1" />
<fieldset class="rows"><ol>
<li>
<label for="labelWidth">
Label width (Expressed in mm): </label>
<input id="labelWidth" type="text" name="labelWidth" size="5" value="<!-- TMPL_VAR NAME="LABEL_WIDTH" -->">
</li>
<li>
<label for="labelHeigth">
Label heigth (Expressed in mm): </label>
<input id="labelHeigth" type="text" name="labelHeigth" size="5" value="<!-- TMPL_VAR NAME="LABEL_HEIGTH" -->">
</li>
<li>
<label for="systemDpi">
System dpi: </label>
<input id="systemDpi" type="text" name="systemDpi" size="5" value="<!-- TMPL_VAR NAME="SYSTEM_DPI" -->">
</li>
<li>
<label for="pageType">
Page Type: </label>
<select name="pageType" id="pageType" size="1">
<!-- TMPL_IF name="A4" -->
<option value="A4" selected="selected">A4</option>
<!-- TMPL_ELSE -->
<option value="A4">A4</option>
<!-- /TMPL_IF -->
<!-- TMPL_IF name="Letter" -->
<option value="Letter" selected="selected">Letter</option>
<!-- TMPL_ELSE -->
<option value="Letter">Letter</option>
<!-- /TMPL_IF -->
<!-- TMPL_IF name="Legal" -->
<option value="Legal" selected="selected">Legal</option>
<!-- TMPL_ELSE -->
<option value="Legal">Legal</option>
<!-- /TMPL_IF --> </select>
</li>
<li>
<label for="columns">
Columns: </label>
<input id="columns" type="text" name="columns" size="5" value="<!-- TMPL_VAR NAME="COLUMNS" -->">
</li>
<li>
<label for="rows">
Rows: </label>
<input id="rows" type="text" name="rows" size="5" value="<!-- TMPL_VAR NAME="ROWS" -->">
</li>
<li>
<label for="marginBottom">
Margin Bottom (Expressed in mm): </label>
<input id="marginBottom" type="text" name="marginBottom" size="5" value="<!-- TMPL_VAR NAME="MARGIN_TOP" -->">
</li>
<li>
<label for="marginLeft">
Margin Left (Expressed in mm): </label>
<input id="marginLeft" type="text" name="marginLeft" size="5" value="<!-- TMPL_VAR NAME="MARGIN_LEFT" -->">
</li>
</ol></fieldset>
<fieldset class="action"><input type="submit" value="Save Settings" /></fieldset>
</form>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->