Bug 20538: Remove the need of writing [% KOHA_VERSION %] everywhere
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / modules / help / edithelp.tt
1 [% USE Asset %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Online help</title>
4 [% Asset.js("lib/tiny_mce/tiny_mce.js") %]
5 <script type="text/javascript">//<![CDATA[
6 tinyMCE.baseURL = "[% interface %]/lib/tiny_mce";
7 tinyMCE.init({
8         mode : "textareas",
9         theme : "advanced",
10     content_css : "[% interface %]/[% theme %]/css/tinymce.css",
11     plugins : "table,save,advhr,advlink,searchreplace,print,contextmenu",
12         theme_advanced_disable : "underline,strikethrough,styleselect,image",
13         theme_advanced_buttons1_add_before : "save,|",
14         theme_advanced_buttons2_add_before: "cut,copy,paste,|,search,replace,|",
15         theme_advanced_buttons3_add_before : "tablecontrols,|",
16     theme_advanced_buttons3_add : "advhr,|,print",
17         theme_advanced_toolbar_location : "top",
18         theme_advanced_toolbar_align : "left",
19         theme_advanced_path_location : "bottom",
20         plugin_insertdate_dateFormat : "%Y-%m-%d",
21         plugin_insertdate_timeFormat : "%H:%M:%S",
22     apply_source_formatting : true
23 });
24 //]]>
25 </script>
26 [% INCLUDE intranetstylesheet.inc %]
27 [% Asset.css("css/help.css") %]
28 </head>
29 <body id="help_edithelp" class="help">
30         <h1>Online Help</h1>
31 [% IF ( error ) %]
32 <h5>[% error %]</h5>
33 [% END %]
34 <form action="/cgi-bin/koha/edithelp.pl" method="post">
35 <input type="hidden" name="referer" value="[% referer %]" />
36 <input type="hidden" name="type" value="[% type %]" />
37 <textarea name="help" cols="60" rows="20">[% help %]</textarea>
38 <fieldset class="action"><input type="submit" name="submit" class="submit" value="Submit" /> <a class="cancel" href="#" onclick="history.back(); return false;">Cancel</a></fieldset>
39 </form>
40         
41 </body>
42 </html>
43
44