% content_for :head do %>
<%= javascript_include_tag "user" %>
<% end %>
<% content_for :heading_class, "pb-0" %>
<% content_for :heading do %>
<%= t ".title" %>
<%= render :partial => "navigation" %>
<% end %>
<%= render :partial => "layouts/control_icons", :locals => { :icons => %w[zoomin zoomout geolocate] } %>
<%= render :partial => "layouts/markers", :locals => { :types => %w[dot] } %>
<%= bootstrap_form_for current_user, :url => { :action => :update } do |f| %>
<%= t ".no home location" %>
<%= f.text_field :home_lat, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "home_lat" %>
<%= f.text_field :home_lon, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "home_lon" %>
<%= f.text_field :home_location_name, :wrapper_class => "my-2 col-sm-4 pe-3", :class => "mt-auto", :id => "home_location_name" %>
checked <% end %> id="updatehome" />
<%= tag.div "", :id => "map", :class => "content_map border border-secondary-subtle rounded z-0" %>
<%= f.primary t(".save") %>
<%= link_to t(".cancel"), current_user, :class => "btn btn-link" %>
<% end %>