summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-cust_pkg-status.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/tr-select-cust_pkg-status.html')
-rw-r--r--httemplate/elements/tr-select-cust_pkg-status.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/httemplate/elements/tr-select-cust_pkg-status.html b/httemplate/elements/tr-select-cust_pkg-status.html
deleted file mode 100644
index 6cc29d0..0000000
--- a/httemplate/elements/tr-select-cust_pkg-status.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<% include ('tr-td-label.html', 'label' => 'Status', @_ ) %>
-
- <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>