summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-state.html
diff options
context:
space:
mode:
authorlevinse <levinse>2011-02-13 07:23:42 +0000
committerlevinse <levinse>2011-02-13 07:23:42 +0000
commit705719c34352808839deb2f7fb9c420fd1baf3c8 (patch)
tree7c1bc01f55bc9382bd9f7297e114d1e69efeeef5 /httemplate/elements/tr-select-state.html
parent67c6b2d956295e851335567da679230d818e73ab (diff)
bulk DID orders and inventory, RT11291
Diffstat (limited to 'httemplate/elements/tr-select-state.html')
-rw-r--r--httemplate/elements/tr-select-state.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/httemplate/elements/tr-select-state.html b/httemplate/elements/tr-select-state.html
new file mode 100644
index 000000000..1a62ae561
--- /dev/null
+++ b/httemplate/elements/tr-select-state.html
@@ -0,0 +1,19 @@
+% unless ( $opt{'js_only'} ) {
+ <% include('tr-td-label.html', @_ ) %>
+
+ <TD <% $style %>>
+% }
+
+ <% include( '/elements/select-state.html', %opt ) %>
+
+% unless ( $opt{'js_only'} ) {
+ </TD>
+ </TR>
+% }
+<%init>
+
+my %opt = @_;
+
+my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+
+</%init>