summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-rate_tier_detail.html
diff options
context:
space:
mode:
authorivan <ivan>2011-11-14 04:31:31 +0000
committerivan <ivan>2011-11-14 04:31:31 +0000
commit3db061f538c06804bd0a52b9ef8be3dc6b6db82e (patch)
tree7335808809768c4dcc6c8c85aebfa3ec365398ea /httemplate/elements/tr-rate_tier_detail.html
parent3892b13ea137969a2b4f880883960e58003cc1b3 (diff)
rate tiers for vnes, RT#14903
Diffstat (limited to 'httemplate/elements/tr-rate_tier_detail.html')
-rw-r--r--httemplate/elements/tr-rate_tier_detail.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/httemplate/elements/tr-rate_tier_detail.html b/httemplate/elements/tr-rate_tier_detail.html
new file mode 100644
index 000000000..7b6f26b57
--- /dev/null
+++ b/httemplate/elements/tr-rate_tier_detail.html
@@ -0,0 +1,24 @@
+% unless ( $opt{'js_only'} ) {
+
+ <% include('tr-td-label.html', %opt) %>
+ <TD <% $cell_style %>>
+
+% }
+%
+ <% include( '/elements/rate_tier_detail.html', %opt ) %>
+%
+% unless ( $opt{'js_only'} ) {
+
+ </TD>
+ </TR>
+
+% }
+<%init>
+
+my( %opt ) = @_;
+
+my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+
+$opt{'label'} ||= 'Tier';
+
+</%init>