Merge remote branch 'kc/new/enh/bug_5548' into kcmaster
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / help / edithelp.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Online Help</title>
3 <script language="javascript" type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
4 <script language="javascript" type="text/javascript">
5 tinyMCE.init({
6         mode : "textareas",
7         theme : "advanced",
8         plugins : "table,save,advhr,advlink,iespell,searchreplace,print,contextmenu",
9         theme_advanced_disable : "underline,strikethrough,styleselect,image",
10         theme_advanced_buttons1_add_before : "save,separator",
11         theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",
12         theme_advanced_buttons3_add_before : "tablecontrols,separator",
13         theme_advanced_buttons3_add : "iespell,advhr,separator,print",
14         theme_advanced_toolbar_location : "top",
15         theme_advanced_toolbar_align : "left",
16         theme_advanced_path_location : "bottom",
17         plugin_insertdate_dateFormat : "%Y-%m-%d",
18         plugin_insertdate_timeFormat : "%H:%M:%S",
19     apply_source_formatting : true
20 });
21 </script>
22 <!-- TMPL_IF name="intranetstylesheet" -->
23     <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="intranetstylesheet" -->" />
24 <!-- TMPL_ELSE -->
25     <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/staff-global.css" />
26 <!-- /TMPL_IF -->
27 <!-- TMPL_IF name="intranetcolorstylesheet" -->
28     <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/<!-- TMPL_VAR NAME="intranetcolorstylesheet" -->" />
29 <!-- /TMPL_IF -->
30 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/help.css" />
31 </head>
32 <body id="help">
33         <h1>Online Help</h1>
34 <!-- TMPL_IF NAME="error" -->
35 <h5><!-- TMPL_VAR NAME="error" --></h5>
36 <!-- /TMPL_IF -->
37 <form action="/cgi-bin/koha/edithelp.pl" method="post">
38 <input type="hidden" name="referer" value="<!-- TMPL_VAR NAME="referer" -->" />
39 <input type="hidden" name="type" value="<!-- TMPL_VAR NAME="type" -->" />
40 <textarea name="help" cols="60" rows="20"><!-- TMPL_VAR NAME="help" --></textarea>
41 <fieldset class="action"><input type="submit" name="submit" class="submit" value="Submit" /> <a class="cancel" href="#" onclick="history.back(); return false;">Cancel</a></fieldset>
42 </form>
43         
44 </body>
45 </html>
46
47