fixed so user email is not displayed
This commit is contained in:
parent
073ea140d8
commit
e50cdbff7c
1 changed files with 2 additions and 4 deletions
|
@ -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%>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue