diff --git a/app/views/users/_course_poll.html.erb b/app/views/users/_course_poll.html.erb
index 48ab5d2f2..c98daef92 100644
--- a/app/views/users/_course_poll.html.erb
+++ b/app/views/users/_course_poll.html.erb
@@ -6,6 +6,7 @@
<%= link_to image_tag(url_to_avatar(activity.user), :width => "50", :height => "50"), user_path(activity.user_id), :alt => "用户头像" %>
+ <%= render :partial => 'users/show_detail_info', :locals => {:user => activity.user} %>
diff --git a/app/views/users/_project_create.html.erb b/app/views/users/_project_create.html.erb
index 8e3b5a5dc..0e35bca25 100644
--- a/app/views/users/_project_create.html.erb
+++ b/app/views/users/_project_create.html.erb
@@ -4,6 +4,7 @@
<%= link_to image_tag(url_to_avatar(user), :width => "50", :height => "50"), user_path(user), :alt => "用户头像" %>
+ <%= render :partial => 'users/show_detail_info', :locals => {:user => user} %>
diff --git a/app/views/users/_project_issue.html.erb b/app/views/users/_project_issue.html.erb
index cd9704186..7afaa2391 100644
--- a/app/views/users/_project_issue.html.erb
+++ b/app/views/users/_project_issue.html.erb
@@ -2,6 +2,7 @@
<%= link_to image_tag(url_to_avatar(activity.author), :width => "50", :height => "50"), user_path(activity.author_id), :alt => "用户头像" %>
+ <%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
diff --git a/app/views/users/_project_message.html.erb b/app/views/users/_project_message.html.erb
index 5a9f7e398..f51481abb 100644
--- a/app/views/users/_project_message.html.erb
+++ b/app/views/users/_project_message.html.erb
@@ -2,6 +2,7 @@
<%= link_to image_tag(url_to_avatar(activity.author), :width => "50", :height => "50"), user_path(activity.author_id), :alt => "用户头像" %>
+ <%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
diff --git a/app/views/users/_show_detail_info.html.erb b/app/views/users/_show_detail_info.html.erb
new file mode 100644
index 000000000..0e249e730
--- /dev/null
+++ b/app/views/users/_show_detail_info.html.erb
@@ -0,0 +1,38 @@
+
+
+ <%= image_tag(url_to_avatar(user), :width => "50", :height => "50") %>
+
+
+
+
<%= user %>
<%#= user.show_name %>
+
+
+
<%= user.user_extensions.technical_title %>
+
+
+
+
+
+
+
+
+
+
+ <%= render :partial => 'users/watch_btn_for_picture', :locals => {:user => user} %>
+
+
+ <%= link_to "私信", feedback_path(user), :class => 'greyBtn fl', :target => "_blank" %>
+ <%= link_to "留言", feedback_path(user), :class => 'greyBtn fr', :target => "_blank" %>
+
+
+
+
\ No newline at end of file
diff --git a/app/views/users/_user_activities.html.erb b/app/views/users/_user_activities.html.erb
index bb1a42f58..4953dc134 100644
--- a/app/views/users/_user_activities.html.erb
+++ b/app/views/users/_user_activities.html.erb
@@ -1,7 +1,42 @@
<%= content_for(:header_tags) do %>
<%= import_ke(enable_at: true, prettify: false, init_activity: true) %>
<% end %>
-
+