]> git.openstreetmap.org Git - rails.git/commitdiff
fixed so user email is not displayed
authorNick Black <nickb@svn.openstreetmap.org>
Mon, 7 May 2007 13:33:44 +0000 (13:33 +0000)
committerNick Black <nickb@svn.openstreetmap.org>
Mon, 7 May 2007 13:33:44 +0000 (13:33 +0000)
app/views/user/account.rhtml

index f969203a33185f928b10c0182697f327056005fc..d2852b28a8cdc97f5353faed5c98bc805cf10b74 100644 (file)
@@ -2,7 +2,7 @@
 <%= error_messages_for 'user' %>
 <%= start_form_tag :controller => 'user', :action => 'edit', :display_name => @user.display_name %>
 <table>
-  <tr><td>Email</td><td><%= @user.email %></td></tr>
+  <tr><td>Name</td><td><%= @user.email %></td></tr>
   <tr><td>Mapper since</td><td><%= @user.creation_time %> (<%= time_ago_in_words(@user.creation_time) %> ago)</td></tr>
   <tr><td>Display Name</td><td><%= text_field :user, :display_name, :value => @user.display_name %></td></tr>
   <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> ><td>Your home</td><td><em class="message">You have not entered your home location.</em><span class="location">Latitude: <%= text_field :user, :home_lat, :value => @user.home_lat, :size => 20, :id => "home_lat" %> Longitude <%= text_field :user, :home_lon, :value => @user.home_lon, :size => 20, :id => "home_lon" %></span>  </td></tr>
@@ -22,7 +22,6 @@
     <p>These users are mapping in your area:</p>
     <table>
     <tr>
-    <th>Email</th>
     <th>Name</th>
     <th>Contact</th>
     </tr>
@@ -30,8 +29,7 @@
     <% nearest_str = "nearest.push( { 'display_name' : '#{nearby.display_name}', 'home_lat' : #{nearby.home_lat}, 'home_lon' : #{nearby.home_lon} } )" %>
 
     <tr>
-    <td><%= nearby.email %></td>
-    <td><%= nearby.display_name %></td>
+    <td><%= link_to nearby.display_name, :controller => 'user', :action => 'view',  :display_name => nearby.display_name %></td>
     <td><%= link_to 'send message', :controller => 'message', :action => 'new', :display_name => nearby.display_name %></td>
     </tr>
     <%end%>