openstreetmap-website/app/views/browse/_common_details.rhtml
2009-04-08 23:19:41 +00:00

23 lines
652 B
Text

<tr>
<th>Edited at:</th>
<td><%= h(common_details.timestamp) %></td>
</tr>
<% if common_details.changeset.user.data_public? %>
<tr>
<th>Edited by:</th>
<td><%= link_to h(common_details.changeset.user.display_name), :controller => "user", :action => "view", :display_name => common_details.changeset.user.display_name %></td>
</tr>
<% end %>
<tr>
<th>Version:</th>
<td><%= h(common_details.version) %></td>
</tr>
<tr>
<th>In changeset:</th>
<td><%= link_to common_details.changeset_id, :action => :changeset, :id => common_details.changeset_id %></td>
</tr>
<%= render :partial => "tag_details", :object => common_details %>