summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-did.html
diff options
context:
space:
mode:
authorivan <ivan>2008-06-28 23:03:10 +0000
committerivan <ivan>2008-06-28 23:03:10 +0000
commit9c7dee35f91a386fcce14cb6c3e9d23ba3eee8af (patch)
treeb21b3ca250947289caaecdeba659bc37257bf464 /httemplate/elements/tr-select-did.html
parenta1871d3d13c1dafa93b956762c0d23728d261da7 (diff)
get DIDs from globalpops
Diffstat (limited to 'httemplate/elements/tr-select-did.html')
-rw-r--r--httemplate/elements/tr-select-did.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/httemplate/elements/tr-select-did.html b/httemplate/elements/tr-select-did.html
new file mode 100644
index 000000000..29c5bb7dd
--- /dev/null
+++ b/httemplate/elements/tr-select-did.html
@@ -0,0 +1,23 @@
+<% include('tr-td-label.html', @_ ) %>
+
+% if ( $opt{'curr_value'} ne '' ) {
+
+ <TD BGCOLOR="#dddddd" <% $cell_style %>><% $opt{'formatted_value'} || $opt{'curr_value'} || $opt{'value'} |h %></TD>
+
+% } else {
+
+ <TD <% $cell_style %>>
+ <% include('/elements/select-did.html', %opt ) %>
+ </TD>
+
+% }
+
+</TR>
+
+<%init>
+
+my %opt = @_;
+
+my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+
+</%init>