]> git.openstreetmap.org Git - rails.git/blob - app/views/user/account.html.erb
Implemented Gravatar support
[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 valign="top">
88       <table id="accountImage">
89         <% if @user.image.file? %>
90         <tr>
91           <td rowspan="4" valign="top"><%= user_image @user %></td>
92           <td><%= radio_button_tag "image_action", "keep", !@user.image_use_gravatar %></td>
93           <td><%= t 'user.account.keep image' %></td>
94         </tr>
95         <tr>
96           <td><%= radio_button_tag "image_action", "delete" %></td>
97           <td><%= t 'user.account.delete image' %></td>
98         </tr>
99         <tr>
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>
102         </tr>
103         <% else %>
104         <tr>
105           <td rowspan="2" valign="top"><%= user_image @user %></td>
106           <td><%= radio_button_tag "image_action", "new", !@user.image_use_gravatar %></td>
107           <td><%= t 'user.account.new image' %> <%= f.file_field :image %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span></td>
108         </tr>
109         <% end %>
110         <tr>
111           <td><%= radio_button_tag "image_action", "gravatar", @user.image_use_gravatar %></td>
112           <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>
113         </tr>
114       </table>
115     </td>
116   </tr>
117
118   <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> >
119     <td class="fieldName"><%= t 'user.account.home location' %></td>
120     <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>
121   </tr>
122
123   <tr>
124     <td></td>
125     <td>
126       <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>
127       <% content_for :head do %>
128         <%= javascript_include_tag "user" %>
129       <% end %>
130       <%= content_tag "div", "", :id => "map", :class => "user_map set_location" %>
131     </td>
132   </tr>
133
134   <tr>
135     <td></td>
136     <td class="submitButton"><%= submit_tag t('user.account.save changes button') %></td>
137   </tr>
138 </table>
139 <% end %>
140
141 <% unless @user.data_public? %>
142 <a name="public"></a>
143 <h2><%= t 'user.account.public editing note.heading' %></h2>
144 <%= raw t 'user.account.public editing note.text' %>
145   <%= button_to t('user.account.make edits public button'), :action => :go_public %>
146 <% end %>