The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
[%########################################
  form_select_options_plain_list( value_list, label_list, picked )
     Cycle through all objects in a list and display an <OPTION> for
     each.
  ########################################-%]
[%- FOREACH idx = [ 0..value_list.max ] -%]
   [%- SET label = ( label_list.$idx ) ? label_list.$idx : value_list.$idx;
       SET value = value_list.$idx -%]
   [%- INCLUDE form_select_option -%]
[%- END -%]