fd274a260d615f956bb643872423c42b32bfcb63
[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="[% interface %]/lib/tiny_mce/tiny_mce.js"></script>
4 <script type="text/javascript">//<![CDATA[
5 tinyMCE.init({
6         mode : "textareas",
7         theme : "advanced",
8     content_css : "[% themelang %]/css/tinymce.css",
9     plugins : "table,save,advhr,advlink,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 : "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 //]]>
23 </script>
24 [% IF ( intranetstylesheet ) %]
25     <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
26 [% ELSE %]
27     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
28 [% END %]
29 [% IF ( intranetcolorstylesheet ) %]
30     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
31 [% END %]
32 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/help.css" />
33 </head>
34 <body id="help">
35         <h1>Online Help</h1>
36 [% IF ( error ) %]
37 <h5>[% error %]</h5>
38 [% END %]
39 <form action="/cgi-bin/koha/edithelp.pl" method="post">
40 <input type="hidden" name="referer" value="[% referer %]" />
41 <input type="hidden" name="type" value="[% type %]" />
42 <textarea name="help" cols="60" rows="20">[% help %]</textarea>
43 <fieldset class="action"><input type="submit" name="submit" class="submit" value="Submit" /> <a class="cancel" href="#" onclick="history.back(); return false;">Cancel</a></fieldset>
44 </form>
45         
46 </body>
47 </html>
48
49