Koha/koha-tmpl/intranet-tmpl/prog/en/modules/help/edithelp.tmpl

38 lines
1.5 KiB
Cheetah

<html>
<head>
<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>
</head>
<body>
<div id="main-compact">
<h1>Online Help</h1>
<!-- TMPL_IF NAME="error" -->
<h5><!-- TMPL_VAR NAME="error" --></h5>
<!-- TMPL_ELSE -->
<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>
<input type="submit" name="submit" value="Submit">
</form>
<!-- /TMPL_IF -->
</div>
<!-- TMPL_INCLUDE NAME="help-bottom.inc" -->