From: Shaun McDonald Date: Wed, 23 Jul 2008 14:33:45 +0000 (+0000) Subject: Show whether a trace is public or private in the trace list, so that a user can easil... X-Git-Tag: live~7675 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/a5336e68a3fb124b6d024ea9b0b9d7bfe88b3b6a?hp=9e2f4a16385fd28403086823538b94dda48a9032 Show whether a trace is public or private in the trace list, so that a user can easily find traces that are private, when they really wanted them to be public. Only show 'in ...tags...', if there are some tags. Improve indentation. --- diff --git a/app/views/trace/_trace.rhtml b/app/views/trace/_trace.rhtml index 966ee9263..d54f77ab6 100644 --- a/app/views/trace/_trace.rhtml +++ b/app/views/trace/_trace.rhtml @@ -2,26 +2,31 @@ <% cl = cycle('table0', 'table1') %> <% if trace.inserted %> - + <% else %> - PENDING + PENDING <% end %> <%= link_to trace.name, {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id} %> ... <% if trace.inserted %> - (<%= trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> points) + (<%= trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> points) <% end %> ... <%= time_ago_in_words( trace.timestamp ) %> ago <%= link_to 'more', {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id}, {:title => 'View Trace Details'} %> / <%= link_to_if trace.inserted?, 'map', {:controller => 'site', :action => 'index', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => 'View Map'} %> / <%= link_to 'edit', {:controller => 'site', :action => 'edit', :gpx => trace.id }, {:title => 'Edit Map'} %> + <% if trace.public? %> + PUBLIC + <% else %> + PRIVATE + <% end %>
<%= h(trace.description) %>
by <%= link_to h(trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => trace.user.display_name} %> - in - <% if trace.tags %> + <% if !trace.tags.empty? %> + in <% trace.tags.each do |tag| %> <%= link_to_tag tag.tag %> <% end %>