X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/afe8dd51ece21325eea8a108515b9426764de5b2..329b6faf91745b4b6760d975d8b5574c5ffdb181:/app/views/changeset/_changeset.rhtml?ds=inline
diff --git a/app/views/changeset/_changeset.rhtml b/app/views/changeset/_changeset.rhtml
index 67f3e72bb..4012c41a3 100644
--- a/app/views/changeset/_changeset.rhtml
+++ b/app/views/changeset/_changeset.rhtml
@@ -3,19 +3,22 @@
#<%= changeset.id %>
+ |
<% if changeset.closed_at > DateTime.now %> (still editing)
<% else %><%= changeset.closed_at.strftime("%d %b %Y %H:%M") %><% end %>
+ |
- <%if showusername==true %>
-
- <% if changeset.user.data_public? %>
- <%= link_to h(changeset.user.display_name), :controller => "user", :action => "view", :display_name => changeset.user.display_name %>
- <% else %>
- annon
- <% end %>
+ <%if showusername %>
+ |
+ <% if changeset.user.data_public? %>
+ <%= link_to h(changeset.user.display_name), :controller => "changeset", :action => "list_user", :display_name => changeset.user.display_name %>
+ <% else %>
+ Anonymous
+ <% end %>
+ |
<% end %>
@@ -24,21 +27,23 @@
<% else %>
(none)
<% end %>
+ |
<% if changeset.min_lat.nil? %>
(no edits)
<% else
- 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.max_lon/GeoRecord::SCALE.to_f
+ 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",lat1) -%>,<%= format("%0.3f",lon1) -%>) to
- (<%= format("%0.3f",lat2) -%>,<%= format("%0.3f",lon2) -%>)
+ (<%= format("%0.3f",minlon) -%>,<%= format("%0.3f",minlat) -%>,<%= format("%0.3f",maxlon) -%>,<%= format("%0.3f",maxlat) -%>)
<% end %>
+ |
<%= link_to 'more', {:controller => 'browse', :action => 'changeset', :id => changeset.id}, {:title => 'View changeset details'} %>
+ |