diff options
author | ivan <ivan> | 2008-06-17 03:35:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-06-17 03:35:56 +0000 |
commit | 7153190ee1bfeb6d3ad9e6da270a41a949333a7e (patch) | |
tree | 4f3f13115ed182e1d219c136f559eb2fa04a1183 /httemplate/edit/invoice_template.html | |
parent | 97c8cbe1a7645ecce1192a1c3c20807e428f907c (diff) |
finish adding a feature to easily list all email addresses for an agent & send them email
Diffstat (limited to 'httemplate/edit/invoice_template.html')
-rw-r--r-- | httemplate/edit/invoice_template.html | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/httemplate/edit/invoice_template.html b/httemplate/edit/invoice_template.html index 851ab5ecf..9cec62c86 100644 --- a/httemplate/edit/invoice_template.html +++ b/httemplate/edit/invoice_template.html @@ -10,23 +10,12 @@ % if ( $type eq 'html' ) { -% #init - <SCRIPT TYPE="text/javascript" src="<% $p %>elements/fckeditor/fckeditor.js"> - </SCRIPT> - -% #editor - <SCRIPT TYPE="text/javascript"> - var oFCKeditor = new FCKeditor('value'); - oFCKeditor.Value = <% $value |js_string %>; - - oFCKeditor.BasePath = '<% $p %>elements/fckeditor/'; - oFCKeditor.Config['SkinPath'] = '<% $p %>elements/fckeditor/editor/skins/silver/'; - oFCKeditor.Height = '800'; - oFCKeditor.Config['StartupFocus'] = true; - - oFCKeditor.Create(); - - </SCRIPT> + <% include('/elements/htmlarea.html', + 'field' => 'value', + 'curr_value' => $value, + 'height' => 800, + ) + %> % } else { |