Use float to position the navigation controls and map on the right rather than a table so that we get more consistent positioning and avoid forcing the map of the right hand side of the viewport.
9 lines
592 B
Text
9 lines
592 B
Text
<%= render :partial => "navigation" %>
|
|
<h2><%= t 'browse.changeset.changeset', :id => @changeset.id %></h2>
|
|
<% if @changeset.has_valid_bbox? %>
|
|
<%= render :partial => "map", :object => @changeset %>
|
|
<% end %>
|
|
<%= render :partial => "changeset_details", :object => @changeset %>
|
|
<hr />
|
|
<%= t 'browse.changeset.download', :changeset_xml_link => link_to(t('browse.changeset.changesetxml'), :controller => "changeset", :action => "read"),
|
|
:osmchange_xml_link => link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>
|