globalPOPs provisioning
[freeside.git] / httemplate / elements / tr-select-did.html
1 <% include('tr-td-label.html', @_ ) %>
2
3 % if ( $opt{'curr_value'} ne '' ) {
4
5     <TD BGCOLOR="#dddddd" <% $cell_style %>><% $opt{'formatted_value'} || $opt{'curr_value'} || $opt{'value'} |h %></TD>
6     
7     <% include('hidden.html', %opt ) %>
8
9 % } else {
10   
11     <TD <% $cell_style %>>
12       <% include('/elements/select-did.html', %opt ) %>
13     </TD>
14
15 % }
16
17 </TR>
18
19 <%init>
20
21 my %opt = @_;
22
23 my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
24
25 </%init>