diff options
author | ivan <ivan> | 2010-04-29 07:40:46 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-04-29 07:40:46 +0000 |
commit | 2ac302e18d723563692cdbbd74f3e9e5331a3014 (patch) | |
tree | ce25a3f91382098fa749f0d8c5dde7c77699b631 /httemplate/edit/process/cgp_rule.html | |
parent | fa6176ab2df85c4b66026e9fe2a7242293d20ce5 (diff) |
communigate (phase 2): rules: adding conditions and actions to rule edit. RT#7514
Diffstat (limited to 'httemplate/edit/process/cgp_rule.html')
-rw-r--r-- | httemplate/edit/process/cgp_rule.html | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/httemplate/edit/process/cgp_rule.html b/httemplate/edit/process/cgp_rule.html index 3880b56b9..f427b6ccf 100644 --- a/httemplate/edit/process/cgp_rule.html +++ b/httemplate/edit/process/cgp_rule.html @@ -1,6 +1,16 @@ <% include( 'elements/process.html', - 'table' => 'cgp_rule', - 'redirect' => $redirect, + 'table' => 'cgp_rule', + 'redirect' => $redirect, + 'process_o2m' => [ + { + 'table' => 'cgp_rule_condition', + 'fields' => [qw( condition op params )], + }, + { + 'table' => 'cgp_rule_action', + 'fields' => [qw( action params )], + }, + ], ) %> <%init> |