view changesets by user
This commit is contained in:
parent
4e8ed960a7
commit
cc90867183
6 changed files with 83 additions and 1 deletions
34
app/views/changeset/_changeset.rhtml
Normal file
34
app/views/changeset/_changeset.rhtml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<tr>
|
||||
<% cl = cycle('table0', 'table1') %>
|
||||
|
||||
<td class="<%= cl %>">
|
||||
#<%= changeset.id %>
|
||||
|
||||
<td class="<%= cl %>">
|
||||
<% if changeset.closed_at > DateTime.now %> (still editing)
|
||||
<% else %><%= changeset.closed_at.strftime("%d %b %Y %H:%M") %><% end %>
|
||||
|
||||
<td class="<%= cl %>">
|
||||
<% if changeset.tags['comment'] %>
|
||||
<%= changeset.tags['comment'] %>
|
||||
<% else %>
|
||||
(none)
|
||||
<% end %>
|
||||
|
||||
<td class="<%= cl %>">
|
||||
<% 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.min_lon/GeoRecord::SCALE.to_f
|
||||
%>
|
||||
(<a href='/?lat=<%= lat1 %>&lon=<%= lon1 %>&zoom=14'><%= format("%0.3f",lat1) -%>,<%= format("%0.3f",lon1) -%></a>) to
|
||||
(<a href='/?lat=<%= lat2 %>&lon=<%= lon2 %>&zoom=14'><%= format("%0.3f",lat2) -%>,<%= format("%0.3f",lon2) -%></a>)
|
||||
<% end %>
|
||||
|
||||
<td class="<%= cl %>">
|
||||
<%= link_to 'more', {:controller => 'browse', :action => 'changeset', :id => changeset.id}, {:title => 'View changeset details'} %>
|
||||
|
||||
</tr>
|
Loading…
Add table
Add a link
Reference in a new issue