event refactor, landing on HEAD!
[freeside.git] / httemplate / elements / tr-select-cust_pkg-status.html
index 22ee146..c3daf72 100644 (file)
@@ -1,14 +1,29 @@
-%
-%  my( $status, %opt ) = @_;
-%
-%  $opt{'statuses'} ||= [ FS::cust_pkg->statuses() ]; # { disabled=>'' } )
-%
-%
-
-
-<TR>
-  <TD ALIGN="right"><% $opt{'label'} || 'Status' %></TD>
-  <TD>
-    <% include( '/elements/select-cust_pkg-status.html', $status, %opt ) %>
+<% include ('tr-td-label.html', @_ ) %>
+
+  <TD <% $style %>>
+
+    <% include( '/elements/select-cust_pkg-status.html', 
+                  'curr_value' => $curr_value,
+                  %opt
+              )
+    %>
+
   </TD>
+
 </TR>
+
+<%init>
+
+my %opt = @_;
+
+#my $onchange = $opt{'onchange'}
+#                 ? 'onChange="'. $opt{'onchange'}. '(this)"'
+#                 : '';
+
+my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+
+$opt{'statuses'} ||= [ FS::cust_pkg->statuses() ]; # { disabled=>'' } )
+
+my $curr_value = $opt{'curr_value'} || $opt{'value'};
+
+</%init>