1 <h2><%= t 'user.account.my settings' %></h2>
3 <%= link_to t('user.account.return to profile'), :controller => 'user', :action => 'view', :display_name => @user.display_name %> |
4 <%= link_to t('user.view.oauth settings'), :controller => 'oauth_clients', :action => 'index' %>
6 <%= error_messages_for 'user' %>
7 <%= form_for :user, :html => { :multipart => true } do |f| %>
8 <table id="accountForm">
10 <td class="fieldName"><%= t 'user.new.display name' %></td>
11 <td><%= f.text_field :display_name %></td>
15 <td class="fieldName" style="padding-bottom:0px;"><%= t 'user.account.current email address' %></td>
16 <td style="padding-bottom:0px;"><%= @user.email %> <span class="minorNote"><%= t 'user.account.email never displayed publicly' %></span></td>
20 <td class="fieldName"><%= t 'user.account.new email address' %></td>
21 <td><%= f.email_field :new_email, {:size => 50, :maxlength => 255} %> <span class="minorNote"><%= t 'user.account.email never displayed publicly' %></span></td>
25 <td class="fieldName" style="padding-bottom:0px;"><%= t 'user.new.password' %></td>
26 <td style="padding-bottom:0px;"><%= f.password_field :pass_crypt, {:value => '', :size => 30, :maxlength => 255, :autocomplete => :off} %></td>
30 <td class="fieldName"><%= t 'user.new.confirm password' %></td>
31 <td><%= f.password_field :pass_crypt_confirmation, {:value => '', :size => 30, :maxlength => 255, :autocomplete => :off} %></td>
35 <td class="fieldName" ><%= t 'user.account.openid.openid' %></td>
36 <td><%= f.url_field :openid_url, {:id => "openid_url", :class => "openid_url"} %> <span class="minorNote">(<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>)</span></td>
40 <td class="fieldName"><%= t 'user.account.public editing.heading' %></td>
42 <% if @user.data_public? %>
43 <%= t 'user.account.public editing.enabled' %> <span class="minorNote">(<a href="<%= t 'user.account.public editing.enabled link' %>" target="_new"><%= t 'user.account.public editing.enabled link text' %></a>)</span>
45 <%= t 'user.account.public editing.disabled' %> <span class="minorNote">(<a href="#public"><%= t 'user.account.public editing.disabled link text' %></a>)</span>
51 <td class="fieldName"><%= t 'user.account.contributor terms.heading' %></td>
53 <% if @user.terms_agreed? %>
54 <%= t 'user.account.contributor terms.agreed' %>
55 <span class="minorNote">(<a href="<%= t 'user.account.contributor terms.link' %>" target="_new"><%= t 'user.account.contributor terms.link text' %></a>)</span>
57 <% if @user.consider_pd? %>
58 <%= t 'user.account.contributor terms.agreed_with_pd' %>
61 <%= t 'user.account.contributor terms.not yet agreed' %> <br />
63 <%= link_to t('user.account.contributor terms.review link text'), :controller => 'user', :action => 'terms' %>
69 <td class="fieldName"><%= t 'user.account.profile description' %></td>
70 <td><%= richtext_area :user, :description, :rows => '15', :cols => '80' %></td>
74 <td class="fieldName"><%= t 'user.account.preferred languages' %></td>
75 <td><%= f.text_field :languages %></td>
79 <td class="fieldName"><%= t 'user.account.preferred editor' %></td>
80 <td><%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{DEFAULT_EDITOR}.name")), 'default']] + Editors::ALL_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %></td>
84 <td class="fieldName">
85 <%= t 'user.account.image' %>
88 <% if @user.image.file? %>
89 <table id="accountImage">
91 <td rowspan="3" valign="top"><%= user_image @user %></td>
92 <td><%= radio_button_tag "image_action", "keep", true %></td>
93 <td><%= t 'user.account.keep image' %></td>
96 <td><%= radio_button_tag "image_action", "delete" %></td>
97 <td><%= t 'user.account.delete image' %></td>
100 <td><%= radio_button_tag "image_action", "new" %></td>
101 <td><%= t 'user.account.replace image' %><br /><%= f.file_field :image, :onchange => "$('image_action_new').prop('checked', true)" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span></td>
105 <%= hidden_field_tag "image_action", "new" %>
106 <%= t 'user.account.new image' %><br /><%= f.file_field :image %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span>
111 <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> >
112 <td class="fieldName"><%= t 'user.account.home location' %></td>
113 <td><em class="message"><%= t 'user.account.no home location' %></em><span class="location"><%= t 'user.account.latitude' %> <%= f.text_field :home_lat, :size => 20, :id => "home_lat" %> <%= t 'user.account.longitude' %><%= f.text_field :home_lon, :size => 20, :id => "home_lon" %></span></td>
119 <p><%= t 'user.account.update home location on click' %> <input type="checkbox" value="1" <% unless @user.home_lat and @user.home_lon %> checked="checked" <% end %> id="updatehome" /> </p>
120 <div id="map" class="user_map"></div>
126 <td class="submitButton"><%= submit_tag t('user.account.save changes button') %></td>
131 <%= render :partial => 'map', :locals => { :setting_location => true, :show_other_users => false } %>
133 <% unless @user.data_public? %>
134 <a name="public"></a>
135 <h2><%= t 'user.account.public editing note.heading' %></h2>
136 <%= raw t 'user.account.public editing note.text' %>
137 <%= button_to t('user.account.make edits public button'), :action => :go_public %>