add latitude/longitude to prospects, customers and package locations, RT#15539
[freeside.git] / httemplate / elements / tr-coords.html
1 <TR>
2   <TD ALIGN="right"><% mt('Latitude') |h %></TD>
3   <TD COLSPAN=5>
4     <FONT STYLE="background-color: #ffffff; border: 1px solid #ffffff"><% $latitude %></FONT>
5     &nbsp;<% mt('Longitude') |h %>
6     <FONT STYLE="background-color: #ffffff; border: 1px solid #ffffff"><% $longitude %></FONT>
7     <& /elements/coord-links.html, $latitude, $longitude, $name &>
8   </TD>
9 </TR>
10 <%init>
11
12 my ($latitude, $longitude, $name) = @_;
13
14 </%init>