diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-03-13 14:07:39 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-03-13 14:07:39 -0400 |
commit | 5f9edcbe9fb3b3eb905614927aa6120d50c06ff1 (patch) | |
tree | 9e4c999030123cb8cb6167da559e7b4248109b33 /httemplate/elements | |
parent | e46f0ef0da8d0f639bacb293bfdf820e2a68b480 (diff) |
RT# 78356 - updated documentation and added ability to create access points as Saisei thru api
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/tr-tower_sectors.html | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/httemplate/elements/tr-tower_sectors.html b/httemplate/elements/tr-tower_sectors.html index 106fc76f6..6843f4fdc 100644 --- a/httemplate/elements/tr-tower_sectors.html +++ b/httemplate/elements/tr-tower_sectors.html @@ -17,7 +17,7 @@ my $tabcounter = 0; my @fields = qw( sectorname ip_addr height freq_mhz direction width downtilt v_width db_high db_low sector_range - power line_loss antenna_gain hardware_typenum + power line_loss antenna_gain hardware_typenum up_rate down_rate ); my @sectors; @@ -291,6 +291,20 @@ $(function() { value="<% $sector->db_low |h %>"> <% emt('dB (low quality)') %> </div> + <p> + <label><% emt('Up Rate (Kbps)') %></label> + <input style="text-align: left" + id="<% $id %>_up_rate" + name="<% $id %>_up_rate" + value="<% $sector->up_rate |h %>"> + </p> + <p> + <label><% emt('Down Rate (Kbps)') %></label> + <input style="text-align: left" + id="<% $id %>_down_rate" + name="<% $id %>_down_rate" + value="<% $sector->down_rate |h %>"> + </p> </div> </%def> |