]> git.openstreetmap.org Git - rails.git/blob - app/views/user/account.html.erb
Mark OpenID "what is this?" prompt as a minor note
[rails.git] / app / views / user / account.html.erb
1 <h2><%= t 'user.account.my settings' %></h2>
2 <%= error_messages_for 'user' %>
3 <% form_for :user, :html => { :multipart => true } do |f| %>
4 <table id="accountForm">
5   <tr>
6     <td class="fieldName"><%= t 'user.new.display name' %></td>
7     <td><%= f.text_field :display_name %></td>
8   </tr>
9
10   <tr>
11     <td class="fieldName" style="padding-bottom:0px;"><%= t 'user.account.current email address' %></td>
12     <td style="padding-bottom:0px;"><%= @user.email %> <span class="minorNote"><%= t 'user.account.email never displayed publicly' %></span></td>
13   </tr>
14
15   <tr>
16     <td class="fieldName"><%= t 'user.account.new email address' %></td>
17     <td><%= f.text_field :new_email, {:size => 50, :maxlength => 255} %> <span class="minorNote"><%= t 'user.account.email never displayed publicly' %></span></td>
18   </tr>
19
20   <tr>
21     <td class="fieldName" style="padding-bottom:0px;"><%= t 'user.new.password' %></td>
22     <td style="padding-bottom:0px;"><%= f.password_field :pass_crypt, {:value => '', :size => 30, :maxlength => 255, :autocomplete => :off} %></td>
23   </tr>
24
25   <tr>
26     <td class="fieldName"><%= t 'user.new.confirm password' %></td>
27     <td><%= f.password_field :pass_crypt_confirmation, {:value => '', :size => 30, :maxlength => 255, :autocomplete => :off} %></td>
28   </tr>
29
30   <tr>
31     <td class="fieldName" ><%= t 'user.account.openid.openid' %></td>
32     <td><%= f.text_field :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>
33   </tr>
34
35   <tr>
36     <td class="fieldName" valign="top"><%= t 'user.account.public editing.heading' %></td>
37     <td>
38       <% if @user.data_public? %>
39         <%= 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>
40       <% else %>
41         <%= t 'user.account.public editing.disabled' %> <span class="minorNote">(<a href="#public"><%= t 'user.account.public editing.disabled link text' %></a>)</span>
42       <% end %>
43     </td>
44   </tr>
45
46   <tr>
47     <td class="fieldName" valign="top"><%= t 'user.account.profile description' %></td>
48     <td><%= f.text_area :description, :rows => '5', :cols => '60' %></td>
49   </tr>
50
51   <tr>
52     <td class="fieldName" valign="top"><%= t 'user.account.preferred languages' %></td>
53     <td><%= f.text_field :languages %></td>
54   </tr>
55
56   <tr>
57     <td class="fieldName" valign="top">
58       <%= t 'user.account.image' %>
59     </td>
60     <td valign="top">
61       <% if @user.image.nil? %>
62         <%= hidden_field_tag "image_action", "new" %>
63         <%= t 'user.account.new image' %><br /><%= file_column_field "user", "image" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span>
64       <% else %>
65         <table id="accountImage">
66           <tr>
67             <td rowspan="3" valign="top"><%= image_tag url_for_file_column(@user, "image"), :class => "user_image" %></td>
68             <td><%= radio_button_tag "image_action", "keep", true %></td>
69             <td><%= t 'user.account.keep image' %></td>
70           </tr>
71           <tr>
72             <td><%= radio_button_tag "image_action", "delete" %></td>
73             <td><%= t 'user.account.delete image' %></td>
74           </tr>
75           <tr>
76             <td><%= radio_button_tag "image_action", "new" %></td>
77             <td><%= t 'user.account.replace image' %><br /><%= file_column_field "user", "image", :onchange => "$('image_action_new').checked = true" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span></td>
78           </tr>
79         </table>
80       <% end %>
81     </td>
82   </tr>
83
84   <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> >
85     <td class="fieldName"><%= t 'user.account.home location' %></td>
86     <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>
87   </tr>
88
89   <tr>
90     <td></td>
91     <td>
92       <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>
93       <div id="map" class="user_map" style="border:1px solid black; position:relative; width:500px; height:400px;"></div>
94     </td>
95   </tr>
96   
97   <tr>
98     <td></td>
99     <td align=right><br/><%= submit_tag t('user.account.save changes button') %></td>
100   </tr>
101 </table>
102 <% end %>
103
104 <%= render :partial => 'map' %>
105
106 <% unless @user.data_public? %>
107 <a name="public"></a>
108 <h2><%= t 'user.account.public editing note.heading' %></h2>
109 <%= t 'user.account.public editing note.text' %>
110   <%= button_to t('user.account.make edits public button'), :action => :go_public %>
111 <% end %>
112 <br/>
113 <br/>
114 <%= link_to t('user.account.return to profile'), :controller => 'user', :action => @user.display_name %>
115 <br/>
116 <br/>