- <% if current_user.image.file? %>
- <li>
- <%= radio_button_tag "image_action", "new" %>
- <label class='standard-label' for='image_action_new'>
- <%= t '.replace image' %>
- <span class="form-help deemphasize"><%= t '.image size hint' %></span>
- </label>
- <%= f.file_field :image %>
- </li>
- <% else %>
- <li>
- <%= radio_button_tag "image_action", "new" %>
- <label class='standard-label' for='image_action_new'>
- <%= t '.new image' %>
- <span class="form-help deemphasize"><%= t '.image size hint' %></span>
- </label>
- <%= f.file_field :image %>
- </li>
- <% end %>
- <li>
- <%= radio_button_tag "image_action", "gravatar", current_user.image_use_gravatar %>
- <label class='standard-label' for='image_action_gravatar'>
- <%= t '.gravatar.gravatar' %>
- <span class='form-help deemphasize'> (<a href="<%= t '.gravatar.link' %>" target="_new"><%= t '.gravatar.link text' %></a>)</span>
- </label>
- </li>
- </ul>
- </div>
- </fieldset>
-
- <fieldset class="form-divider">
- <div class='form-row location clearfix'>
- <label class="standard-label"><%= t '.home location' %></label>
- <div id="homerow" <% unless current_user.home_lat and current_user.home_lon %>class="nohome"<% end %> >
- <p class="message form-help deemphasize"><%= t '.no home location' %></p>
- <div class='form-column'>
- <label class="standard-label secondary"><%= t '.latitude' %></label>
- <%= f.text_field :home_lat, :id => "home_lat" %>
- </div>
- <div class='form-column'>
- <label class="standard-label secondary"><%= t '.longitude' %></label>
- <%= f.text_field :home_lon, :id => "home_lon" %>
- </div>
- </div>
- </div>
-
- <div class="form-row">
- <input type="checkbox" name="updatehome" value="1" <% unless current_user.home_lat and current_user.home_lon %> checked="checked" <% end %> id="updatehome" />
- <label class="standard-label" for="updatehome"><%= t '.update home location on click' %></label>
- </div>
- <%= content_tag "div", "", :id => "map", :class => "content_map settings_map set_location" %>
- </fieldset>
-
- <%= submit_tag t('.save changes button') %>