summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-coords.html
diff options
context:
space:
mode:
authorivan <ivan>2011-12-13 05:09:32 +0000
committerivan <ivan>2011-12-13 05:09:32 +0000
commit8cbe016ac2c28cd209c48f053f361573368e7988 (patch)
tree5a39513e71f4e9528f71fa298c2abf8b8dbd07db /httemplate/elements/tr-coords.html
parentea1b65c11b8781160b5a76a77e1ee8108e528048 (diff)
add latitude/longitude to prospects, customers and package locations, RT#15539
Diffstat (limited to 'httemplate/elements/tr-coords.html')
-rw-r--r--httemplate/elements/tr-coords.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/httemplate/elements/tr-coords.html b/httemplate/elements/tr-coords.html
new file mode 100644
index 000000000..5539f565e
--- /dev/null
+++ b/httemplate/elements/tr-coords.html
@@ -0,0 +1,14 @@
+<TR>
+ <TD ALIGN="right"><% mt('Latitude') |h %></TD>
+ <TD COLSPAN=5>
+ <FONT STYLE="background-color: #ffffff; border: 1px solid #ffffff"><% $latitude %></FONT>
+ &nbsp;<% mt('Longitude') |h %>
+ <FONT STYLE="background-color: #ffffff; border: 1px solid #ffffff"><% $longitude %></FONT>
+ <& /elements/coord-links.html, $latitude, $longitude, $name &>
+ </TD>
+</TR>
+<%init>
+
+my ($latitude, $longitude, $name) = @_;
+
+</%init>