X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d9d515bf18e85f02c0d11571e298586a90003d77..9477d7a65e03b895a8d30a4586449e76c1ea4758:/app/views/user/view.html.erb?ds=sidebyside diff --git a/app/views/user/view.html.erb b/app/views/user/view.html.erb index 04c78a900..04fc4cb3b 100644 --- a/app/views/user/view.html.erb +++ b/app/views/user/view.html.erb @@ -11,7 +11,10 @@ <%= link_to t('user.view.my traces'), :controller => 'trace', :action=>'mine' %> <%= number_with_delimiter(@user.traces.size) %> | + <%= link_to t('user.view.my notes'), :controller => 'notes', :action=> 'mine' %> + | <%= 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 %> | @@ -33,10 +36,13 @@ <%= link_to t('user.view.traces'), :controller => 'trace', :action => 'list', :display_name => @this_user.display_name %> <%= number_with_delimiter(@this_user.traces.size) %> | + <%= link_to t('user.view.notes'), :controller => 'notes', :action=> 'mine' %> + | <%= 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 %> | @@ -95,7 +101,7 @@
<% if @user and @user.administrator? -%> -<%= t 'user.view.email address' %> <%= @this_user.email %>
+<%= t 'user.view.email address' %> <%= @this_user.email %>
<% unless @this_user.creation_ip.nil? -%><%= t 'user.view.created from' %> <%= @this_user.creation_ip %>
<% end -%> @@ -113,16 +119,14 @@ <%= javascript_include_tag "user" %> <% end %> <% - data = { + user_data = { :lon => @user.home_lon, :lat => @user.home_lat, - :zoom => 12, - :marker => { - :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"}) - } + :icon => image_path("marker-red.png"), + :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"}) } %> - <%= content_tag "div", "", :id => "map", :class => "user_map", :data => data %> + <%= content_tag "div", "", :id => "map", :class => "user_map", :data => {:user => user_data} %> <% end %> <% friends = @this_user.friends.collect { |f| f.befriendee } %>