]> git.openstreetmap.org Git - rails.git/blob - app/views/user/account.rhtml
Covering the case of an entry not being found. More diary entry tests.
[rails.git] / app / views / user / account.rhtml
1 <h2>My settings</h2>
2 <%= error_messages_for 'user' %>
3 <% form_for :user, @user do |f| %>
4 <table id="accountForm">
5   <tr><td class="fieldName">Display Name : </td><td><%= f.text_field :display_name %></td></tr>
6   <tr><td class="fieldName">Email : </td><td><%= f.text_field :email, {:size => 50, :maxlength => 255} %> <span class="minorNote">(not displayed publicly)</span></td></tr>
7   <tr><td class="fieldName" style="padding-bottom:0px;">Password : </td><td style="padding-bottom:0px;"><%= f.password_field :pass_crypt, {:value => '', :size => 30, :maxlength => 255} %></td></tr>
8   <tr><td class="fieldName">Confirm Password : </td><td><%= f.password_field :pass_crypt_confirmation, {:value => '', :size => 30, :maxlength => 255} %></td></tr>
9  
10   <tr>
11   <td class="fieldName" valign="top">Public editing :</td>
12   <td>
13 <% if @user.data_public? %>
14   Enabled. Not anonymous <span class="minorNote">(<a href="http://wiki.openstreetmap.org/index.php/Disabling_anonymous_edits" target="_new">what's this?</a>)</span>
15 <% else %>
16
17   Currently your edits are anonymous and people can't send you messages or see your location. To show what you edited and allow people to contact you through the website, click the button below.
18   <b>You will need to do this if you want to use the online editor and it is encouraged</b> (<a href="http://wiki.openstreetmap.org/index.php/Disabling_anonymous_edits" target="_new">find out why</a>).
19   <br /><br >
20   This action cannot be reversed and all new users are now public by default.
21   <br /><br />
22   <%= button_to "Make all my edits public", :action => :go_public %>
23   <br /><br />
24   
25 <% end %>
26   </td>
27   </tr>
28
29   
30    
31   <tr><td class="fieldName" valign="top">Profile Description : </td><td><%= f.text_area :description, :rows => '5', :cols => '60' %><br /><br /></td></tr>
32
33   <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> ><td class="fieldName">Home Location : </td><td><em class="message">You have not entered your home location.</em><span class="location">Latitude: <%= f.text_field :home_lat, :size => 20, :id => "home_lat" %> Longitude <%= f.text_field :home_lon, :size => 20, :id => "home_lon" %></span></td></tr>
34
35   <tr><td></td><td>
36   <p>Update home location when I click on the map? <input type="checkbox" value="1" <% unless @user.home_lat and @user.home_lon %> checked="checked" <% end %> id="updatehome" /> </p>
37   <div id="map" style="border:1px solid black; position:relative; width:500px; height:400px;"></div>
38   </td></tr>
39   
40   <tr><td></td><td align=right><br/></br><%= submit_tag 'Save Changes' %></td></tr>
41 </table>
42 <br/>
43
44 <% end %>
45
46 <%= render :partial => 'friend_map' %>
47
48 <br/>
49 <br/>
50 <br/>
51 <%= link_to 'return to profile', :controller => 'user', :action => @user.display_name %>
52 <br/>
53 <br/>