help templates and includes - cleanup for XHTML validation, error display
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / help / edithelp.tmpl
1 <html>
2 <head>
3 <title>Online Help</title>
4 <script language="javascript" type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
5 <script language="javascript" type="text/javascript">
6 tinyMCE.init({
7         mode : "textareas",
8         theme : "advanced",
9         plugins : "table,save,advhr,advlink,iespell,searchreplace,print,contextmenu",
10         theme_advanced_disable : "underline,strikethrough,styleselect,image",
11         theme_advanced_buttons1_add_before : "save,separator",
12         theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",
13         theme_advanced_buttons3_add_before : "tablecontrols,separator",
14         theme_advanced_buttons3_add : "iespell,advhr,separator,print",
15         theme_advanced_toolbar_location : "top",
16         theme_advanced_toolbar_align : "left",
17         theme_advanced_path_location : "bottom",
18         plugin_insertdate_dateFormat : "%Y-%m-%d",
19         plugin_insertdate_timeFormat : "%H:%M:%S",
20 });
21 </script>
22 </head>
23 <body>
24         <div id="main-compact">
25         <h1>Online Help</h1>
26 <!-- TMPL_IF NAME="error" -->
27 <h5><!-- TMPL_VAR NAME="error" --></h5>
28 <!-- /TMPL_IF -->
29 <form action="/cgi-bin/koha/edithelp.pl" method=post>
30 <input type="hidden" name="referer" value="<!-- TMPL_VAR NAME='referer' -->" />
31 <input type="hidden" name="type" value="<!-- TMPL_VAR NAME='type' -->" />
32 <textarea name="help" cols="60" rows="20"><!-- TMPL_VAR NAME="help" --></textarea>
33 <input type="submit" name="submit" value="Submit" />
34 </form>
35         </div>
36         
37 <!-- TMPL_INCLUDE NAME="help-bottom.inc" -->
38