]> git.openstreetmap.org Git - rails.git/blob - app/views/user/account.html.erb
Merge branch 'master' into openID
[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   <tr>
30     <td class="fieldName" ><%= t 'user.account.openid.openid' %></td>
31     <td style="padding-bottom:0px;"><%= f.text_field :openid_url %> (<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>) </td>
32   </tr>
33
34   <tr>
35     <td class="fieldName" valign="top"><%= t 'user.account.public editing.heading' %></td>
36     <td>
37       <% if @user.data_public? %>
38         <%= 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>
39       <% else %>
40         <%= t 'user.account.public editing.disabled' %> <span class="minorNote">(<a href="#public"><%= t 'user.account.public editing.disabled link text' %></a>)</span>
41       <% end %>
42     </td>
43   </tr>
44
45   <tr>
46     <td class="fieldName" valign="top"><%= t 'user.account.profile description' %></td>
47     <td><%= f.text_area :description, :rows => '5', :cols => '60' %></td>
48   </tr>
49
50   <tr>
51     <td class="fieldName" valign="top"><%= t 'user.account.preferred languages' %></td>
52     <td><%= f.text_field :languages %></td>
53   </tr>
54
55   <tr>
56     <td class="fieldName" valign="top">
57       <%= t 'user.account.image' %>
58     </td>
59     <td valign="top">
60       <% if @user.image.nil? %>
61         <%= hidden_field_tag "image_action", "new" %>
62         <%= t 'user.account.new image' %><br /><%= file_column_field "user", "image" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span>
63       <% else %>
64         <table id="accountImage">
65           <tr>
66             <td rowspan="3" valign="top"><%= image_tag url_for_file_column(@user, "image"), :class => "user_image" %></td>
67             <td><%= radio_button_tag "image_action", "keep", true %></td>
68             <td><%= t 'user.account.keep image' %></td>
69           </tr>
70           <tr>
71             <td><%= radio_button_tag "image_action", "delete" %></td>
72             <td><%= t 'user.account.delete image' %></td>
73           </tr>
74           <tr>
75             <td><%= radio_button_tag "image_action", "new" %></td>
76             <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>
77           </tr>
78         </table>
79       <% end %>
80     </td>
81   </tr>
82
83   <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> >
84     <td class="fieldName"><%= t 'user.account.home location' %></td>
85     <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>
86   </tr>
87
88   <tr>
89     <td></td>
90     <td>
91       <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>
92       <div id="map" class="user_map" style="border:1px solid black; position:relative; width:500px; height:400px;"></div>
93     </td>
94   </tr>
95   
96   <tr>
97     <td></td>
98     <td align=right><br/><%= submit_tag t('user.account.save changes button') %></td>
99   </tr>
100 </table>
101 <% end %>
102
103 <%= render :partial => 'map' %>
104
105 <% unless @user.data_public? %>
106 <a name="public"></a>
107 <h2><%= t 'user.account.public editing note.heading' %></h2>
108 <%= t 'user.account.public editing note.text' %>
109   <%= button_to t('user.account.make edits public button'), :action => :go_public %>
110 <% end %>
111 <br/>
112 <br/>
113 <%= link_to t('user.account.return to profile'), :controller => 'user', :action => @user.display_name %>
114 <br/>
115 <br/>