X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9f8952b6ef681a544b9f817483ac21edda0961c7..034982a12fa025af8c1d381cd09483c97fb29dbe:/app/views/trace/view.rhtml
diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml
index be3cbef00..fd3986a44 100644
--- a/app/views/trace/view.rhtml
+++ b/app/views/trace/view.rhtml
@@ -1,19 +1,56 @@
-
- filename: | <%= @trace.name %> |
- uploaded at: | <%= @trace.timestamp %> |
- points: | <%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> |
- start coordinate: | <%= @trace.latitude %>, <%= @trace.longitude %> |
- owner: | <%= link_to @trace.user.display_name, {:controller => 'trace', :action => 'view', :display_name => @trace.user.display_name, :id => nil} %> |
- description: | <%= @trace.description %> |
- tags: |
+ |
+ Filename: |
+ <%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>) |
+
+
+ Uploaded at: |
+ <%= @trace.timestamp %> |
+
+ <% if @trace.inserted? %>
+
+ 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 => 14 %> / <%=link_to 'edit', :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %>) |
+
+ <% end %>
+
+ Owner: |
+ <%= link_to @trace.user.display_name, {:controller => 'trace', :action => 'view', :display_name => @trace.user.display_name} %> |
+
+
+ Description: |
+ <%= @trace.description %> |
+
+
+ Tags: |
+
<% if @trace.tags %>
<% @trace.tags.each do |tag| %>
<%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %>
<% end %>
+ <% else %>
+ None
<% end %>
- |
+
+
+
+
+