Bug 13941: [2/2] Fix <body> tags missing id/class
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / modules / help / edithelp.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Online help</title>
3 <script 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 [% INCLUDE intranetstylesheet.inc %]
25 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/help.css" />
26 </head>
27 <body id="help_edithelp" class="help">
28         <h1>Online Help</h1>
29 [% IF ( error ) %]
30 <h5>[% error %]</h5>
31 [% END %]
32 <form action="/cgi-bin/koha/edithelp.pl" method="post">
33 <input type="hidden" name="referer" value="[% referer %]" />
34 <input type="hidden" name="type" value="[% type %]" />
35 <textarea name="help" cols="60" rows="20">[% help %]</textarea>
36 <fieldset class="action"><input type="submit" name="submit" class="submit" value="Submit" /> <a class="cancel" href="#" onclick="history.back(); return false;">Cancel</a></fieldset>
37 </form>
38         
39 </body>
40 </html>
41
42