Adding yuipath variable to help.pl, and doing some cleanup of help templates (standar...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / help / edithelp.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Online Help</title>
3 <script language="javascript" type="text/javascript" src="<!-- TMPL_VAR name="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 });
20 </script>
21 <!-- TMPL_IF name="intranetstylesheet" -->
22     <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="intranetstylesheet" -->" />
23 <!-- TMPL_ELSE -->
24     <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/staff-global.css" />
25 <!-- /TMPL_IF -->
26 <!-- TMPL_IF name="intranetcolorstylesheet" -->
27     <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/<!-- TMPL_VAR NAME="intranetcolorstylesheet" -->" />
28 <!-- /TMPL_IF -->
29 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/help.css" />
30 </head>
31 <body id="help">
32         <h1>Online Help</h1>
33 <!-- TMPL_IF NAME="error" -->
34 <h5><!-- TMPL_VAR NAME="error" --></h5>
35 <!-- /TMPL_IF -->
36 <form action="/cgi-bin/koha/edithelp.pl" method="post">
37 <input type="hidden" name="referer" value="<!-- TMPL_VAR NAME="referer" -->" />
38 <input type="hidden" name="type" value="<!-- TMPL_VAR NAME="type" -->" />
39 <textarea name="help" cols="60" rows="20"><!-- TMPL_VAR NAME="help" --></textarea>
40 <fieldset class="action"><input type="submit" name="submit" class="submit" value="Submit" /> <a class="cancel" href="#" onclick="history.back(); return false;">Cancel</a></fieldset>
41 </form>
42         
43 </body>
44 </html>
45
46