move the map up to the form
This commit is contained in:
parent
513b863bf0
commit
47856a7228
1 changed files with 7 additions and 6 deletions
|
@ -6,6 +6,13 @@
|
|||
<tr><td>Mapper since</td><td><%= @user.creation_time %> (<%= time_ago_in_words(@user.creation_time) %> ago)</td></tr>
|
||||
<tr><td>Display Name</td><td><%= text_field :user, :display_name, :value => @user.display_name %></td></tr>
|
||||
<tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> ><td>Your home</td><td><em class="message">You have not entered your home location.</em><span class="location">Latitude: <%= text_field :user, :home_lat, :value => @user.home_lat, :size => 20, :id => "home_lat" %> Longitude <%= text_field :user, :home_lon, :value => @user.home_lon, :size => 20, :id => "home_lon" %></span> </td></tr>
|
||||
|
||||
<tr><td></td><td>
|
||||
<div id="map" style="border: 1px solid black; position: relative; width : 90%; height : 300px;">
|
||||
<h3>Click on the map to (re)set your location</h3>
|
||||
</div>
|
||||
</td></tr>
|
||||
|
||||
<tr><td valign="top">Description</td><td><%= text_area :user, :description, :value => @user.description, :class => "editDescription" %></td></tr>
|
||||
</table>
|
||||
<%= submit_tag 'Save Changes' %>
|
||||
|
@ -43,12 +50,6 @@
|
|||
<%= nearest_str %>
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<div id="map" style="border: 1px solid black; position: relative; width : 90%; height : 300px;">
|
||||
<h3>Click on the map to (re)set your location</h3>
|
||||
</div>
|
||||
|
||||
<% if @user.home_lat and @user.home_lon %>
|
||||
<% marker = true %>
|
||||
<% mlon = @user.home_lon %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue