38 lines
2.4 KiB
Plaintext
38 lines
2.4 KiB
Plaintext
<script src="/javascripts/i18n/jquery.ui.datepicker-zh-CN.js" type="text/javascript"></script>
|
|
<input type="hidden" value="<%= @type%>" name="type" id="user_activities_type">
|
|
<div class="homepageRightBanner">
|
|
<div class="NewsBannerName">消息动态</div>
|
|
<ul class="resourcesSelect">
|
|
<li class="resourcesSelected"><a href="javascript:void(0);" class="resourcesIcon"></a>
|
|
<ul class="homepagePostType" style="margin-left:95px; width:80px" >
|
|
<li>
|
|
<ul class="homepagePostTypeHomework fl">
|
|
<% if hidden_unproject_infos %>
|
|
<li><%= link_to "全部动态", {:controller => "users", :action => "project_community", :type => "all"}, :class => "homepagePostTypeAll postTypeGrey" %></li>
|
|
<li><%= link_to @user == User.current ? "我的动态" : "他的动态", {:controller => "users", :action => "project_community", :type => "current_user"},
|
|
:class => "homepagePostTypeMine postTypeGrey" %></li>
|
|
<li><%= link_to "问题动态", {:controller => "users", :action => "project_community", :type => "project_issue"}, :class => "homepagePostTypeQuestion postTypeGrey"%></li>
|
|
<li><%= link_to "论坛动态", {:controller => "users", :action => "project_community", :type => "project_message"}, :class => "homepagePostTypeForum postTypeGrey"%></li>
|
|
<li><%= link_to "个人留言", {:controller => "users", :action => "project_community", :type => "user_journals"}, :class => "homepagePostTypeMessage postTypeGrey" %></li>
|
|
<% end %>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!--显示个人主页-->
|
|
<%# if @user.blog.homepage_id and BlogComment.where("id=?", @user.blog.homepage_id).count > 0 %>
|
|
<%# homepage = BlogComment.find(@user.blog.homepage_id) %>
|
|
<%#= render :partial => 'blogs/homepage', :locals => {:activity => homepage, :user_activity_id => homepage.id} %>
|
|
<%# end %>
|
|
<% if @user_activities_count > 0 %>
|
|
<%= render :partial => 'users/user_activities', :locals => { :user_activities => @user_activities, :page => 0, :type => @type,
|
|
:user_id => (@user.type == "AnonymousUser" ? User.current.id : @user.id), :action => params[:action] } %>
|
|
<% else %>
|
|
<div class="mb10">
|
|
<%= render :partial => 'users/no_data' %>
|
|
</div>
|
|
<% end %>
|