X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fbrowse%2Ftower.html;h=e2f9fd0bde6e25c2fe39d1f4501fe907bb27e3b8;hb=7d34aacffa38c4cac09b54080487a66c264e4668;hp=7f096a74865fde78b7a51230438ad5ee581c0670;hpb=a6fe07e49e3fc12169e801b1ed6874c3a5bd8500;p=freeside.git diff --git a/httemplate/browse/tower.html b/httemplate/browse/tower.html index 7f096a748..e2f9fd0bd 100644 --- a/httemplate/browse/tower.html +++ b/httemplate/browse/tower.html @@ -8,12 +8,13 @@ 'count_query' => 'SELECT COUNT(*) FROM tower', 'disableable' => 1, 'disabled_statuspos' => 1, - 'header' => [ 'Name', 'Sectors', 'Coordinates'], + 'header' => [ 'Name', 'Location', 'Sectors', ], 'fields' => [ $tower_sub, - $sector_sub, $coord_sub, + $sector_sub, ], 'links' => [ ], + 'cell_style' => [ $tagdesc_style ], ) %> <%init> @@ -21,6 +22,9 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); +#false laziness w/ browse/part_tag.html +my $tagdesc_style = sub { 'background-color:#'.shift->color }; + my $num_svc_links = sub { my ($query_string, $sectors) = @_; return if !$sectors; @@ -57,7 +61,12 @@ my $coord_sub = sub { [ [ - { 'data' => "Latitude: " . $tower->latitude . "
Longitude: " . $tower->longitude, }, + { 'data' => "Latitude: ". $tower->latitude. + "
Longitude: ". $tower->longitude. + "
Altitude: ". $tower->altitude. + "
Height: ". $tower->height. + "
Veg. height: ". $tower->veg_height, + }, { 'data' => $coords, 'link' => "Coordinates", }, ], ] @@ -70,7 +79,7 @@ my $tower_sub = sub { ); [ #rows [ - { 'data' => $tower->towername, }, + { 'data' => $tower->towername. ' ', }, { 'data' => ' (edit) ', size => '-1', 'link' => $p.'edit/tower.html?' . $tower->towernum }, ], @@ -89,7 +98,7 @@ my $sector_sub = sub { my $sectornum = $sector->sectornum; [ { - 'data' => $sector->sectorname, + 'data' => $sector->sectorname. ' ', 'link' => ( $sector->ip_addr ? 'http://'. $sector->ip_addr : '' ), },