X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/edaddbedaec78a252e988e2271962407e64483fd..c789acd39d1c685b490975dc06721dadd76c83ef:/app/views/trace/view.html.erb
diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb
index 381a2fc97..cbe6c1628 100644
--- a/app/views/trace/view.html.erb
+++ b/app/views/trace/view.html.erb
@@ -1,19 +1,23 @@
-
<%= h(@title) %>
+<% content_for :heading do %>
+ <%= t 'trace.view.heading', :name => h(@trace.name) %>
+<% end %>
+<% if STATUS != :gpx_offline %>
<% if @trace.inserted %>
<% else %>
<%= t'trace.view.pending' %>
<% end %>
+<% end %>
<%= t'trace.view.filename' %> |
<%= @trace.name %> (<%= link_to t('trace.view.download'), :controller => 'trace', :action => 'data', :id => @trace.id %>) |
-
+
<%= t'trace.view.uploaded' %> |
- <%= @trace.timestamp %> |
+ <%= l @trace.timestamp, :format => :friendly %> |
<% if @trace.inserted? %>
@@ -35,29 +39,24 @@
<%= t'trace.view.tags' %> |
- <% if @trace.tags %>
- <% @trace.tags.each do |tag| %>
- <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %>
- <% end %>
+ <% unless @trace.tags.empty? %>
+ <%= raw(@trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ")) %>
<% else %>
- <%= t'trace.view.none' %>
+ <%= t'trace.view.none' %>
<% end %>
|
+
+ <%= t'trace.view.visibility' %> |
+ <%= t"trace.visibility.#{@trace.visibility}" %> |
+
-
-
- <% unless @trace.public? %>
- <%= button_to t('trace.view.make_public'), :controller => 'trace', :action => 'make_public', :id => @trace.id %> |
- <% end %>
- <% if @trace.user == @user %>
- <%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %> |
- <% end %>
- <% if @trace.user == @user %>
- <%= button_to t('trace.view.delete_track'), :controller => 'trace', :action => 'delete', :id => @trace.id %> |
- <% end %>
-
-
+<%= if_user(@trace.user) do %>
+
+ <%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %>
+ <%= button_to t('trace.view.delete_track'), :controller => 'trace', :action => 'delete', :id => @trace.id %>
+
+<% end %>