Owen Leonard
d12cdc120d
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
46 lines
2.2 KiB
Cheetah
46 lines
2.2 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Online Help</title>
|
|
<script language="javascript" type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
|
|
<script language="javascript" type="text/javascript">
|
|
tinyMCE.init({
|
|
mode : "textareas",
|
|
theme : "advanced",
|
|
plugins : "table,save,advhr,advlink,iespell,searchreplace,print,contextmenu",
|
|
theme_advanced_disable : "underline,strikethrough,styleselect,image",
|
|
theme_advanced_buttons1_add_before : "save,separator",
|
|
theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",
|
|
theme_advanced_buttons3_add_before : "tablecontrols,separator",
|
|
theme_advanced_buttons3_add : "iespell,advhr,separator,print",
|
|
theme_advanced_toolbar_location : "top",
|
|
theme_advanced_toolbar_align : "left",
|
|
theme_advanced_path_location : "bottom",
|
|
plugin_insertdate_dateFormat : "%Y-%m-%d",
|
|
plugin_insertdate_timeFormat : "%H:%M:%S",
|
|
});
|
|
</script>
|
|
<!-- TMPL_IF name="intranetstylesheet" -->
|
|
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="intranetstylesheet" -->" />
|
|
<!-- TMPL_ELSE -->
|
|
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/staff-global.css" />
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="intranetcolorstylesheet" -->
|
|
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/<!-- TMPL_VAR NAME="intranetcolorstylesheet" -->" />
|
|
<!-- /TMPL_IF -->
|
|
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/help.css" />
|
|
</head>
|
|
<body id="help">
|
|
<h1>Online Help</h1>
|
|
<!-- TMPL_IF NAME="error" -->
|
|
<h5><!-- TMPL_VAR NAME="error" --></h5>
|
|
<!-- /TMPL_IF -->
|
|
<form action="/cgi-bin/koha/edithelp.pl" method="post">
|
|
<input type="hidden" name="referer" value="<!-- TMPL_VAR NAME="referer" -->" />
|
|
<input type="hidden" name="type" value="<!-- TMPL_VAR NAME="type" -->" />
|
|
<textarea name="help" cols="60" rows="20"><!-- TMPL_VAR NAME="help" --></textarea>
|
|
<fieldset class="action"><input type="submit" name="submit" class="submit" value="Submit" /> <a class="cancel" href="#" onclick="history.back(); return false;">Cancel</a></fieldset>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|