X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/898beb7b7f693cc21b329dab9a22268e3df77446..d841d3d1352b31e7a2196b07f4ae335e6bca8380:/app/views/changeset/_changeset.rhtml diff --git a/app/views/changeset/_changeset.rhtml b/app/views/changeset/_changeset.rhtml index e9c07f94f..049be5d33 100644 --- a/app/views/changeset/_changeset.rhtml +++ b/app/views/changeset/_changeset.rhtml @@ -3,17 +3,31 @@ #<%= changeset.id %> + - <% if changeset.closed_at > Time.now %> (still editing) + <% if changeset.closed_at > DateTime.now %> (still editing) <% else %><%= changeset.closed_at.strftime("%d %b %Y %H:%M") %><% end %> + + + <%if showusername %> + + <% if changeset.user.data_public? %> + <%= link_to h(changeset.user.display_name), :controller => "user", :action => "view", :display_name => changeset.user.display_name %> + <% else %> + Anonymous + <% end %> + + <% end %> + <% if changeset.tags['comment'] %> - <%= changeset.tags['comment'] %> + <%= h(changeset.tags['comment']) %> <% else %> (none) <% end %> + <% if changeset.min_lat.nil? %> @@ -22,13 +36,15 @@ lat1 = changeset.min_lat/GeoRecord::SCALE.to_f lat2 = changeset.max_lat/GeoRecord::SCALE.to_f lon1 = changeset.min_lon/GeoRecord::SCALE.to_f - lon2 = changeset.min_lon/GeoRecord::SCALE.to_f + lon2 = changeset.max_lon/GeoRecord::SCALE.to_f %> (<%= format("%0.3f",lat1) -%>,<%= format("%0.3f",lon1) -%>) to (<%= format("%0.3f",lat2) -%>,<%= format("%0.3f",lon2) -%>) <% end %> + <%= link_to 'more', {:controller => 'browse', :action => 'changeset', :id => changeset.id}, {:title => 'View changeset details'} %> +