get DIDs from globalpops
[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 % } else {
8   
9     <TD <% $cell_style %>>
10       <% include('/elements/select-did.html', %opt ) %>
11     </TD>
12
13 % }
14
15 </TR>
16
17 <%init>
18
19 my %opt = @_;
20
21 my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
22
23 </%init>