Index: openacs-4/packages/contacts/www/admin/ext-search-options.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/ext-search-options.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/contacts/www/admin/ext-search-options.tcl 11 Nov 2005 22:57:08 -0000 1.3 +++ openacs-4/packages/contacts/www/admin/ext-search-options.tcl 14 Nov 2005 22:55:46 -0000 1.4 @@ -10,6 +10,7 @@ {delete_p "f"} {orderby "var_name,asc"} {search_id:multiple ""} + {aggregated_p "f"} } set page_title [_ contacts.Extended_search_opt] @@ -50,6 +51,12 @@ {html {cols 40 rows 4}} {help_text "[_ contacts.subquery_help]"} } + {aggregated_p:text(radio) + {label "Aggregated:"} + {options { {[_ contacts.True] t} {[_ contacts.False] f}}} + {value $aggregated_p} + {help_text "[_ contacts.aggregated_help]"} + } {description:text(textarea),optional,nospell {label "[_ contacts.Description]"} {html {cols 40 rows 2}} @@ -72,7 +79,8 @@ -var_name $var_name \ -pretty_name $pretty_name \ -subquery $subquery \ - -description $description + -description $description \ + -aggregated_p $aggregated_p } -select_query { select * from contact_extend_options where extend_id = :extend_id @@ -82,7 +90,8 @@ -var_name $var_name \ -pretty_name $pretty_name \ -subquery $subquery \ - -description $description + -description $description \ + -aggregated_p $aggregated_p } -after_submit { ad_returnredirect "ext-search-options" } @@ -107,6 +116,7 @@ var_name [list] \ pretty_name [list] \ subquery [list] \ + aggregated_p [list] \ description [list] template::list::create \ @@ -137,8 +147,11 @@ } subquery { label "[_ contacts.Subquery]" - html { width 45% } + html { width 35% } } + aggregated_p { + label "[_ contacts.Aggregated]" + } description { label "[_ contacts.Description]" html { width 25% } @@ -198,8 +211,11 @@ } subquery { label "[_ contacts.Subquery]" - html { width 45% } + html { width 35% } } + aggregated_p { + label "[_ contacts.Aggregated]" + } description { label "[_ contacts.Description]" html { width 25% }