9 lines
601 B
Text
9 lines
601 B
Text
<%= t 'diary_entry.location.location' %>
|
|
|
|
<a href="<%= url_for :controller => 'site', :action => 'index', :lat => location.latitude, :lon => location.longitude, :zoom => 14 %>">
|
|
<abbr class="geo" title="<%= number_with_precision(location.latitude, :precision => 4) %>; <%= number_with_precision(location.longitude, :precision => 4) %>">
|
|
<% cache(:controller => 'diary_entry', :action => 'view', :display_name => location.user.display_name, :id => location.id, :part => "location") do %>
|
|
<%= describe_location location.latitude, location.longitude, 14, location.language_code %>
|
|
<% end %>
|
|
</abbr>
|
|
</a>
|