Merge remote-tracking branch 'origin/new/bug_5604'
[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     content_css : "[% themelang %]/css/tinymce.css",
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,|",
12         theme_advanced_buttons2_add_before: "cut,copy,paste,|,search,replace,|",
13         theme_advanced_buttons3_add_before : "tablecontrols,|",
14         theme_advanced_buttons3_add : "iespell,advhr,|,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     apply_source_formatting : true
21 });
22 </script>
23 [% IF ( intranetstylesheet ) %]
24     <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
25 [% ELSE %]
26     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
27 [% END %]
28 [% IF ( intranetcolorstylesheet ) %]
29     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
30 [% END %]
31 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/help.css" />
32 </head>
33 <body id="help">
34         <h1>Online Help</h1>
35 [% IF ( error ) %]
36 <h5>[% error %]</h5>
37 [% END %]
38 <form action="/cgi-bin/koha/edithelp.pl" method="post">
39 <input type="hidden" name="referer" value="[% referer %]" />
40 <input type="hidden" name="type" value="[% type %]" />
41 <textarea name="help" cols="60" rows="20">[% help %]</textarea>
42 <fieldset class="action"><input type="submit" name="submit" class="submit" value="Submit" /> <a class="cancel" href="#" onclick="history.back(); return false;">Cancel</a></fieldset>
43 </form>
44         
45 </body>
46 </html>
47
48