summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-realestate_location.html
blob: 1367886ed0d92c9b5922bfc36f726653502da4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<TR>
  <TH ALIGN="right"><% $opt{'label'} || 'Real Estate Location' %></TD>
  <TD>
    <% include( '/elements/select-realestate_location.html',
        'curr_value' => $curr_value,
        %opt
      )
    %>
  </TD>
</TR>

<%init>

my %opt = @_;
my $curr_value = $opt{'curr_value'} || $opt{'value'};

</%init>