]> git.openstreetmap.org Git - rails.git/blob - app/views/user/account.html.erb
Reduce flicker in data browser
[rails.git] / app / views / user / account.html.erb
1 <h2><%= t 'user.account.my settings' %></h2>
2
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' %>
5
6 <%= error_messages_for 'user' %>
7 <%= form_for :user, :html => { :multipart => true } do |f| %>
8 <table id="accountForm">
9   <tr>
10     <td class="fieldName"><%= t 'user.new.display name' %></td>
11     <td><%= f.text_field :display_name %></td>
12   </tr>
13
14   <tr>
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>
17   </tr>
18
19   <tr>
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>
22   </tr>
23
24   <tr>
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>
27   </tr>
28
29   <tr>
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>
32   </tr>
33
34   <tr>
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>
37   </tr>
38
39   <tr>
40     <td class="fieldName"><%= t 'user.account.public editing.heading' %></td>
41     <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>
44       <% else %>
45         <%= t 'user.account.public editing.disabled' %> <span class="minorNote">(<a href="#public"><%= t 'user.account.public editing.disabled link text' %></a>)</span>
46       <% end %>
47     </td>
48   </tr>
49
50   <tr>
51     <td class="fieldName"><%= t 'user.account.contributor terms.heading' %></td>
52     <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>
56         <br />
57         <% if @user.consider_pd? %>
58           <%= t 'user.account.contributor terms.agreed_with_pd' %>
59         <% end %>
60       <% else %>
61         <%= t 'user.account.contributor terms.not yet agreed' %> <br />
62
63         <%= link_to t('user.account.contributor terms.review link text'), :controller => 'user', :action => 'terms' %>
64       <% end %>
65     </td>
66   </tr>
67
68   <tr>
69     <td class="fieldName"><%= t 'user.account.profile description' %></td>
70     <td><%= richtext_area :user, :description, :rows => '15', :cols => '80' %></td>
71   </tr>
72
73   <tr>
74     <td class="fieldName"><%= t 'user.account.preferred languages' %></td>
75     <td><%= f.text_field :languages %></td>
76   </tr>
77
78   <tr>
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>
81   </tr>
82
83   <tr>
84     <td class="fieldName">
85       <%= t 'user.account.image' %>
86     </td>
87     <td class="accountImage">
88       <%= user_image @user %>
89       <table>
90         <% if @user.image.file? %>
91         <tr>
92           <td><%= radio_button_tag "image_action", "keep", !@user.image_use_gravatar %></td>
93           <td><%= t 'user.account.keep image' %></td>
94         </tr>
95         <% end %>
96         <% if @user.image.file? || @user.image_use_gravatar? %>
97         <tr>
98           <td><%= radio_button_tag "image_action", "delete" %></td>
99           <td><%= t 'user.account.delete image' %></td>
100         </tr>
101         <% end %>
102         <% if @user.image.file? %>
103         <tr>
104           <td><%= radio_button_tag "image_action", "new" %></td>
105           <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>
106         </tr>
107         <% else %>
108         <tr>
109           <td><%= radio_button_tag "image_action", "new" %></td>
110           <td><%= t 'user.account.new 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>
111         </tr>
112         <% end %>
113         <tr>
114           <td><%= radio_button_tag "image_action", "gravatar", @user.image_use_gravatar %></td>
115           <td><%= t 'user.account.gravatar.gravatar' %> <span class="minorNote">(<a href="<%= t 'user.account.gravatar.link' %>" target="_new"><%= t 'user.account.gravatar.link text' %></a>)</span></td>
116         </tr>
117       </table>
118     </td>
119   </tr>
120
121   <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> >
122     <td class="fieldName"><%= t 'user.account.home location' %></td>
123     <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>
124   </tr>
125
126   <tr>
127     <td></td>
128     <td>
129       <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>
130       <% content_for :head do %>
131         <%= javascript_include_tag "user" %>
132       <% end %>
133       <%= content_tag "div", "", :id => "map", :class => "user_map set_location" %>
134     </td>
135   </tr>
136
137   <tr>
138     <td></td>
139     <td class="submitButton"><%= submit_tag t('user.account.save changes button') %></td>
140   </tr>
141 </table>
142 <% end %>
143
144 <% unless @user.data_public? %>
145 <a name="public"></a>
146 <h2><%= t 'user.account.public editing note.heading' %></h2>
147 <%= raw t 'user.account.public editing note.text' %>
148   <%= button_to t('user.account.make edits public button'), :action => :go_public %>
149 <% end %>