+ <%= image_tag(url_to_avatar(User.current),width:"208", height: "208") %>
+ <% if User.current.logged?%>
+ <% if User.current == @user%>
+
+ <%#= link_to "编辑资料", my_account_path, :class => "homepageEditProfile c_white"%>
+
+
+ <% else %>
+
+
+ <%if(@user.watched_by?(User.current))%>
+ <%= link_to "",watch_path(:object_type=> 'user',:object_id=>@user.id,:target_id=>@user.id),:class => "homepageFollow", :method => "delete",:remote => "true", :title => "取消关注"%>
+ <% else %>
+ <%= link_to "",watch_path(:object_type=> 'user',:object_id=>@user.id,:target_id=>@user.id),:class => "homepageFollow", :method => "post",:remote => "true", :title => "添加关注"%>
+ <% end %>
+
+ <% end %>
+ <% end%>