</tr>
<% end %>
- <% unless changeset_details.tags_as_hash.empty? %>
- <tr valign="top">
- <th>Tags:</th>
- <td>
- <table padding="0">
- <%= render :partial => "tag", :collection => changeset_details.tags_as_hash %>
- </table>
- </td>
- </tr>
- <% else %>
- <tr>
- <th>Tags</th>
- <td>There are no tags for this changeset</td>
- </tr>
- <% end %>
+ <%= render :partial => "tag_details", :object => changeset_details %>
<tr>
<th>Bounding box:</th>
- <% if changeset_details.max_lat.nil? or changeset_details.min_lat.nil? or changeset_details.max_lon.nil? or changeset_details.min_lon.nil? %>
+ <% unless changeset_details.has_valid_bbox? %>
<td>No bounding box has been stored for this changeset.</td>
- <%
- else
+ <% else
minlon = changeset_details.min_lon/GeoRecord::SCALE.to_f
minlat = changeset_details.min_lat/GeoRecord::SCALE.to_f
maxlon = changeset_details.max_lon/GeoRecord::SCALE.to_f
<td><%=maxlon -%></td>
</tr>
<tr>
- <td colspan="3" style="text-align:center"><%= minlon -%></td>
+ <td colspan="3" style="text-align:center"><%= minlat -%></td>
</tr>
</table>
</td>