This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
# this version works with index based numeric value keys | |
# note if you're storing this numeric value somewhere, | |
# you can never re-order the values and can only add to the end of the list | |
my $home_shows = 2; # current value | |
my $i = 0; | |
my @options = map { $i == $home_shows ? [$_ => $i++, selected => undef] : [$_ => $i++] } | |
qw(latest popular profile); | |
%> | |
<label class="label" for="home-shows">home shows</label> |