summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-tower_sector.html
diff options
context:
space:
mode:
authorivan <ivan>2011-12-10 00:36:47 +0000
committerivan <ivan>2011-12-10 00:36:47 +0000
commite6f7e02b32ebaa471230819d36a88f88b98bed6a (patch)
tree7af39d4c474621a698d1b2b71efb9c630aedefab /httemplate/elements/tr-tower_sector.html
parent980f3fdaab3a99451b83367860427a3226ab9f98 (diff)
tower tracking, RT#15538
Diffstat (limited to 'httemplate/elements/tr-tower_sector.html')
-rw-r--r--httemplate/elements/tr-tower_sector.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/httemplate/elements/tr-tower_sector.html b/httemplate/elements/tr-tower_sector.html
new file mode 100644
index 000000000..871c7fd9c
--- /dev/null
+++ b/httemplate/elements/tr-tower_sector.html
@@ -0,0 +1,24 @@
+% unless ( $opt{'js_only'} ) {
+
+ <% include('tr-td-label.html', %opt) %>
+ <TD <% $cell_style %>>
+
+% }
+%
+ <% include( '/elements/sector.html', %opt ) %>
+%
+% unless ( $opt{'js_only'} ) {
+
+ </TD>
+ </TR>
+
+% }
+<%init>
+
+my( %opt ) = @_;
+
+my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+
+$opt{'label'} ||= 'Sector';
+
+</%init>