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