X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/582e5b225d41d7b8413ba947f6f762cbd59812f2..67a03d44a171a05fc637e1b9ecfc8d3b7769dc85:/app/views/user/view.html.erb diff --git a/app/views/user/view.html.erb b/app/views/user/view.html.erb index 2b24fb02f..114f9b90a 100644 --- a/app/views/user/view.html.erb +++ b/app/views/user/view.html.erb @@ -12,6 +12,7 @@ <%= number_with_delimiter(@user.traces.size) %> | <%= link_to t('user.view.my diary'), :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name %> + <%= number_with_delimiter(@user.diary_entries.size) %> | <%= link_to t('user.view.my comments' ), :controller => 'diary_entry', :action => 'comments', :display_name => @user.display_name %> | @@ -37,6 +38,7 @@ <%= link_to t('user.view.send message'), :controller => 'message', :action => 'new', :display_name => @this_user.display_name %> | <%= link_to t('user.view.diary'), :controller => 'diary_entry', :action => 'list', :display_name => @this_user.display_name %> + <%= number_with_delimiter(@this_user.diary_entries.size) %> | <%= link_to t('user.view.comments'), :controller => 'diary_entry', :action => 'comments', :display_name => @this_user.display_name %> | @@ -78,17 +80,6 @@ <% end %> - - -<% if @user and @user.administrator? -%> -

<%= t 'user.view.email address' %> <%= @this_user.email %>

- <% unless @this_user.creation_ip.nil? -%> -

<%= t 'user.view.created from' %> <%= @this_user.creation_ip %>

- <% end -%> -

<%= t 'user.view.status' %> <%= @this_user.status.capitalize %>

-

<%= t 'user.view.spam score' %> <%= @this_user.spam_score %>

-<% end -%> -
<%= @this_user.description.to_html %>

@@ -105,14 +96,34 @@

+<% if @user and @user.administrator? -%> +

<%= t 'user.view.email address' %> <%= @this_user.email %>

+ <% unless @this_user.creation_ip.nil? -%> +

<%= t 'user.view.created from' %> <%= @this_user.creation_ip %>

+ <% end -%> +

<%= t 'user.view.status' %> <%= @this_user.status.capitalize %>

+

<%= t 'user.view.spam score' %> <%= @this_user.spam_score %>

+<% end -%> + <% if @user and @this_user.id == @user.id %> -
- <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %> + <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %> +

<%= raw(t 'user.view.if set location', :settings_link => (link_to t('user.view.settings_link_text'), :controller => 'user', :action => 'account', :display_name => @user.display_name)) %>

- <% else %> - <%= render :partial => 'map', :locals => { :setting_location => false, :show_other_users => true } %> +
+ <% else %> + <% content_for :head do %> + <%= javascript_include_tag "user" %> <% end %> -
+ <% + user_data = { + :lon => @user.home_lon, + :lat => @user.home_lat, + :icon => "marker.png", + :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"}) + } + %> + <%= content_tag "div", "", :id => "map", :class => "user_map", :data => {:user => user_data} %> + <% end %> <% friends = @this_user.friends.collect { |f| f.befriendee } %> <% nearby = @this_user.nearby - friends %> @@ -125,7 +136,7 @@ <%= link_to t('user.view.friends_changesets'), friend_changesets_path %>
<%= link_to t('user.view.friends_diaries'), friend_diaries_path %>

- <%= render :partial => "contact", :collection => friends %> + <%= render :partial => "contact", :collection => friends, :locals => {:type => "friend"} %>
<% end %> @@ -137,7 +148,7 @@ <%= link_to t('user.view.nearby_changesets'), nearby_changesets_path %>
<%= link_to t('user.view.nearby_diaries'), nearby_diaries_path %>

- <%= render :partial => "contact", :collection => nearby %> + <%= render :partial => "contact", :collection => nearby, :locals => {:type => "nearby mapper"} %>
<% end %> <% end %>