From c409bc5a7d49e7a3428e572327502a485c1e63f7 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sat, 28 Jul 2007 16:49:46 +0000 Subject: [PATCH] Show an edit link on the trace details page, and use the same zoom level as the trace list. --- app/views/trace/view.rhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml index 8ae7c8327..207c214b7 100644 --- a/app/views/trace/view.rhtml +++ b/app/views/trace/view.rhtml @@ -6,7 +6,7 @@ filename:<%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>) uploaded at:<%= @trace.timestamp %> points:<%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> - start coordinate:<%= @trace.latitude %>, <%= @trace.longitude %> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 6 %>) + start coordinate:<%= @trace.latitude %>, <%= @trace.longitude %> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to 'edit', :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %>) owner:<%= link_to @trace.user.display_name, {:controller => 'trace', :action => 'view', :display_name => @trace.user.display_name, :id => nil} %> description:<%= @trace.description %> tags: -- 2.43.2