add latitude/longitude to prospects, customers and package locations, RT#15539
[freeside.git] / httemplate / elements / tr-coords.html
diff --git a/httemplate/elements/tr-coords.html b/httemplate/elements/tr-coords.html
new file mode 100644 (file)
index 0000000..5539f56
--- /dev/null
@@ -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>