diff options
Diffstat (limited to 'httemplate/elements/select-table.html')
-rw-r--r-- | httemplate/elements/select-table.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html index 10cc8b995..96f0177fb 100644 --- a/httemplate/elements/select-table.html +++ b/httemplate/elements/select-table.html @@ -11,9 +11,12 @@ # 'empty_label' => '', #better specify it though, the default might change # 'hashref' => {}, # 'records' => \@records, #instead of hashref + # 'pre_options' => [ 'value' => 'option' ], #before normal options my( %opt ) = @_; + #warn "***** select-table: \n". Dumper(%opt); + my $key = dbdef->table($opt{'table'})->primary_key; #? $opt{'primary_key'} || my $name_col = $opt{'name_col'}; @@ -25,11 +28,17 @@ @records = qsearch( $opt{'table'}, ( $opt{'hashref'} || {} ) ); } + my @pre_options = $opt{'pre_options'} ? @{ $opt{'pre_options'} } : (); + %> <SELECT NAME="<%= $key %>"> - <OPTION VALUE=""><%= $opt{'empty_label'} || 'all' %></OPTION> + <% while ( @pre_options ) { %> + <OPTION VALUE="<%= shift(@pre_options) %>"><%= shift(@pre_options) %> + <% } %> + + <OPTION VALUE=""><%= $opt{'empty_label'} || 'all' %> <% foreach my $record ( sort { $a->$name_col() cmp $b->$name_col() } @records |