Merge remote-tracking branch 'kc/new/bug_5868' into kcmaster
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / help / edithelp.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Online Help</title>
3 <script language="javascript" type="text/javascript" src="[% 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 [% IF ( intranetstylesheet ) %]
23     <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
24 [% ELSE %]
25     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
26 [% END %]
27 [% IF ( intranetcolorstylesheet ) %]
28     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
29 [% END %]
30 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/help.css" />
31 </head>
32 <body id="help">
33         <h1>Online Help</h1>
34 [% IF ( error ) %]
35 <h5>[% error %]</h5>
36 [% END %]
37 <form action="/cgi-bin/koha/edithelp.pl" method="post">
38 <input type="hidden" name="referer" value="[% referer %]" />
39 <input type="hidden" name="type" value="[% type %]" />
40 <textarea name="help" cols="60" rows="20">[% 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