X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e2abf1254bbadf4827f3f74a0b890622fbf11b00..001ff5764bcf15aaa179dc5c7844038676536622:/app/views/changeset/_changeset.html.erb diff --git a/app/views/changeset/_changeset.html.erb b/app/views/changeset/_changeset.html.erb index b682f1b4b..33d8cf129 100644 --- a/app/views/changeset/_changeset.html.erb +++ b/app/views/changeset/_changeset.html.erb @@ -12,7 +12,7 @@ <% if changeset.closed_at > DateTime.now %> <%= t'changeset.changeset.still_editing' %> - <% else %><%= l changeset.closed_at, :format => :short %><% end %> + <% else %><%= l changeset.closed_at, :format => :long %><% end %> @@ -27,8 +27,8 @@ <% 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 %> @@ -37,20 +37,18 @@ <% 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 - %> + <% if changeset.area > 1500000000000 %> + <%= t'changeset.changeset.big_area' %> + <% end %> + <% end %> -