Koha/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-profile.tmpl
Nicole Engard 710a7f0086 bug 4101 patroncards changed to patron card creator
There are references to patroncards in label text through out the patron card creator - I have changed it to 'patron card creator'

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-02-03 15:10:05 -05:00

162 lines
8.8 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Tools &rsaquo; Patron Card Creator</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
var selectedUnit = $("#units option:selected").attr("value");
var unitfields = $("#offset_horz,#offset_vert,#creep_horz,#creep_vert");
$(unitfields).after("<span class=\"unit\">"+getUnit(selectedUnit)+"</span>");
$("#units").change(function(){
$(".unit").html(getUnit($(this).val()));
});
function getUnit(unit){
switch(unit){
case "POINT":
var unit = " pt";
break;
case "AGATE":
var unit = " ag";
break;
case "INCH":
var unit = " in";
break;
case "MM":
var unit = " mm";
break;
case "CM":
var unit = " cm";
break;
default:
var unit = "";
}
return unit;
}
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
$("#save").empty();
$("#cancel").empty();
buildButtons();
});
function submitForm() {
document.input.submit();
};
function buildButtons() {
var saveButton = new YAHOO.widget.Button({
type: "link",
onclick: {fn: submitForm},
label: _("Save"),
id: "save",
container: "save"
});
var cancelButton = new YAHOO.widget.Button({
type: "link",
href: "/cgi-bin/koha/patroncards/manage.pl?card_element=profile",
label: _("Cancel"),
id: "cancel",
container: "cancel",
});
};
</script>
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!-- TMPL_INCLUDE NAME="cat-search.inc" -->
<div id="breadcrumbs">
<a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
<a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
<a href="/cgi-bin/koha/patroncards/home.pl">Patron Card Creator</a> &rsaquo;
<a href="/cgi-bin/koha/patroncards/manage.pl?label_element=profile">Printer Profiles</a> &rsaquo;
Edit Printer Profile
</div>
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<div class="yui-g">
<h3>Edit Printer Profile</h3>
<div class="yui-g first">
<form name="input" action="/cgi-bin/koha/patroncards/edit-profile.pl" method="get">
<fieldset class="rows"><legend>Profile settings</legend>
<ol>
<li>
<!-- TMPL_IF NAME="profile_id" -->
<span class="label">Printer name:</span><!-- TMPL_VAR NAME="printer_name" -->
<input type="hidden" name="printer_name" value="<!-- TMPL_VAR NAME="printer_name" -->" />
<!-- TMPL_ELSE -->
<label for="printer_name">Printer name:</label><input type="text" size="20" name="printer_name" id="printer_name" />
<!-- /TMPL_IF -->
</li>
<li>
<!-- TMPL_IF NAME="profile_id" -->
<span class="label">Paper bin:</span> <!-- TMPL_VAR NAME="paper_bin" -->
<input type="hidden" name="paper_bin" value="<!-- TMPL_VAR NAME="paper_bin" -->" />
<!-- TMPL_ELSE -->
<label for="paper_bin">Paper bin:</label><input type="text" size="20" name="paper_bin" id="paper_bin" />
<!-- /TMPL_IF -->
</li>
<li>
<!-- TMPL_IF NAME="label_template" -->
<label for="template_name">Template name:</label> <!-- TMPL_VAR NAME="label_template" -->
<!-- TMPL_ELSE -->
<span class="label">Template name:</span> Profile Unassigned
<!-- /TMPL_IF -->
</li>
<li>
<label for="units">Units: </label>
<select id="units" name="units">
<!-- TMPL_LOOP NAME="units" -->
<!-- TMPL_IF NAME="selected" -->
<option value="<!-- TMPL_VAR NAME="type" -->" selected="selected">
<!-- TMPL_ELSE -->
<option value="<!-- TMPL_VAR NAME="type" -->">
<!-- /TMPL_IF -->
<!-- TMPL_VAR NAME="desc" -->
</option>
<!-- /TMPL_LOOP -->
</select>
</li>
</ol>
</fieldset>
<fieldset class="rows"><legend>Offset:</legend>
<ol>
<li>
<label for="offset_horz">Horizontal: </label><input type="text" size="4" name="offset_horz" id="offset_horz" value="<!-- TMPL_VAR NAME="offset_horz" -->" />
</li>
<li>
<label for="offset_vert">Vertical: </label><input type="text" size="4" name="offset_vert" id="offset_vert" value="<!-- TMPL_VAR NAME="offset_vert" -->" />
</li>
</ol>
</fieldset>
<fieldset class="rows"><legend>Creep:</legend>
<ol>
<li>
<label for="creep_horz">Horizontal: </label><input type="text" size="4" name="creep_horz" id="creep_horz" value="<!-- TMPL_VAR NAME="creep_horz" -->" />
</li>
<li>
<label for="creep_vert">Vertical: </label><input type="text" size="4" name="creep_vert" id="creep_vert" value="<!-- TMPL_VAR NAME="creep_vert" -->" />
</li>
</ol>
</fieldset>
<fieldset class="action">
<span id="save"><input type="submit" value="Save" /></span>
<span id ="cancel"><a href="/cgi-bin/koha/patroncards/manage.pl?card_element=profile" class="cancel">Cancel</a></span>
<input type="hidden" name="op" value="save" />
<input type="hidden" name="profile_id" value="<!-- TMPL_VAR NAME="profile_id" -->" />
</fieldset>
</form>
</div>
</div>
</div>
</div>
<div class="yui-b">
<!-- TMPL_INCLUDE NAME="patroncards-menu.inc" -->
</div>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->