From: Dan Karran Date: Sun, 17 Jun 2007 22:33:14 +0000 (+0000) Subject: Starting to tidy up user profiles, adding nearby user list to profile page. X-Git-Tag: live~8370 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/3a8432422204336c95510ebe3d8b68233e48949a Starting to tidy up user profiles, adding nearby user list to profile page. --- diff --git a/app/views/user/view.rhtml b/app/views/user/view.rhtml index 3d1707266..7bc75a62f 100644 --- a/app/views/user/view.rhtml +++ b/app/views/user/view.rhtml @@ -1,17 +1,18 @@

<%= @this_user.display_name %>

+
<%= simple_format(@this_user.description) %>
+ <% if @user and @this_user.id == @user.id %>

Messages

<% if !@user.messages.empty? %>

You have <%=@user.get_new_messages.length %> new messages and <%=@user.get_all_messages.length - @user.get_new_messages.length %> old messages:

-
+
- + + + + <% if params[:unread] %> <% @user.get_all_messages.each do |message| %> @@ -20,10 +21,10 @@ <% if message.message_read = 0 %> - <%else%> <%end%> + <%end%> @@ -52,22 +53,37 @@
<%= link_to 'show all messages', :controller => 'user', :action => 'view', :display_name => @user.display_name, :unread => true %> -
+ + +

Your diary

+<%= link_to 'View your diary', :controller => 'user', :action=>'diary', :display_name => @user.display_name %>
+<%= link_to 'New diary post', :controller => 'diary_entry', :action=>'new', :display_name => @user.display_name %> +

Your account

-Go to <%= link_to 'your account page', :controller => 'user', :action => 'account', :display_name => @user.display_name %> to see who's mapping in your area. -
-
-<%= link_to 'View your diary', :controller => 'user', :action=>'diary', :display_name => @user.display_name %> +<%= link_to 'Edit your settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %> + <% else %> -<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => @this_user.id %>

-<%= link_to 'Add as friend', :controller => 'user', :action => 'make_friend', :display_name => @this_user.display_name %>

-<%= link_to 'Diary', :controller => 'user', :action=>'diary', :display_name => @this_user.display_name %> +<%= link_to 'Send message', :controller => 'message', :action => 'new', :user_id => @this_user.id %>
+<%= link_to 'Add as friend', :controller => 'user', :action => 'make_friend', :display_name => @this_user.display_name %>
+<%= link_to 'View diary', :controller => 'user', :action=>'diary', :display_name => @this_user.display_name %> <% end %> -
-
- -

<%= params[:display_name] %> says:

-<%= simple_format(@this_user.description) %> +

Nearby users

+<% if @this_user.home_lat and @this_user.home_lon %> + <% if @this_user.nearby.empty? %> + There are no users who admit to mapping nearby. + <% else %> +
from -title -received on -mark as read -reply - +
fromtitlereceived on
<%= message.sent_on %><%= link_to 'mark as read', :controller => 'message', :action => 'mark', :message_id => message.id %> <%= link_to 'reply', :controller => 'message', :action => 'new', :user_id => message.from_user_id %> message read<%= link_to 'reply', :controller => 'message', :action => 'new', :user_id => message.from_user_id %>
+ <% @this_user.nearby(1,1).each do |nearby| %> + + + + + <%end%> +
<%= link_to nearby.display_name, :controller => 'user', :action => 'view', :display_name => nearby.display_name %>(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %>)
+ <%end%> +<% else %> + No home location has been set. +<% end %>