X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ff03138a978406b431da71aba64941d87b509098..48929e8781f9c136a142400a7a2ef1cf994f74fd:/app/views/changeset/_changeset.html.erb diff --git a/app/views/changeset/_changeset.html.erb b/app/views/changeset/_changeset.html.erb index f8f00addb..2ba88b756 100644 --- a/app/views/changeset/_changeset.html.erb +++ b/app/views/changeset/_changeset.html.erb @@ -1,18 +1,23 @@ - - <% cl = cycle('table0', 'table1') %> +<% cl = cycle('table0', 'table1') %> + - - #<%= changeset.id %> + + <%= + id_link = link_to(changeset.id, + {:controller => 'browse', :action => 'changeset', :id => changeset.id}, + {:title => t('changeset.changeset.view_changeset_details')}) + t'changeset.changeset.id', :id => id_link + %> - + <% if changeset.closed_at > DateTime.now %> <%= t'changeset.changeset.still_editing' %> - <% else %><%= changeset.closed_at.strftime("%d %b %Y %H:%M") %><% end %> + <% else %><%= l changeset.closed_at, :format => :long %><% end %> <%if showusername %> - + <% if changeset.user.data_public? %> <%= link_to h(changeset.user.display_name), :controller => "changeset", :action => "list", :display_name => changeset.user.display_name %> <% else %> @@ -21,35 +26,29 @@ <% end %> - - <% if changeset.tags['comment'] %> - <%= h(changeset.tags['comment']) %> + + <% if changeset.tags['comment'].to_s != '' %> + <%= linkify(h(changeset.tags['comment'])) %> <% else %> <%= t'changeset.changeset.no_comment' %> <% end %> - + <% if changeset.min_lat.nil? %> <%= t'changeset.changeset.no_edits' %> - <% else - minlon = changeset.min_lon/GeoRecord::SCALE.to_f - minlat = changeset.min_lat/GeoRecord::SCALE.to_f - maxlon = changeset.max_lon/GeoRecord::SCALE.to_f - maxlat = changeset.max_lat/GeoRecord::SCALE.to_f - %> + <% else %> + <% + minlon = changeset.min_lon/GeoRecord::SCALE.to_f + minlat = changeset.min_lat/GeoRecord::SCALE.to_f + maxlon = changeset.max_lon/GeoRecord::SCALE.to_f + maxlat = changeset.max_lat/GeoRecord::SCALE.to_f + %> '><%= format("%0.3f",minlon) -%>,<%= format("%0.3f",minlat) -%>,<%= format("%0.3f",maxlon) -%>,<%= format("%0.3f",maxlat) -%> - <% if changeset.area > 1500000000000 %> - <%= t'changeset.changeset.big_area' %> - <% - end - end - %> - - - - <%= link_to t('changeset.changeset.more'), {:controller => 'browse', :action => 'changeset', :id => changeset.id}, {:title => t('changeset.changeset.view_changeset_details')} %> + <% if changeset.area > 1500000000000 %> + <%= t'changeset.changeset.big_area' %> + <% end %> + <% end %> -