101 lines
5.9 KiB
Plaintext
101 lines
5.9 KiB
Plaintext
<script>
|
|
$(document).ready(function(){
|
|
$("#relateProject,.relatePInfo").mouseover(function(){
|
|
$(".relatePInfo").css("display","block");
|
|
})
|
|
$("#relateProject,.relatePInfo").mouseout(function(){
|
|
$(".relatePInfo").css("display","none");
|
|
})
|
|
$(".coursesLineGrey").mouseover(function(){
|
|
$(this).css("color","#ffffff");
|
|
})
|
|
$(".coursesLineGrey").mouseout(function(){
|
|
$(this).css("color","#808080");
|
|
})
|
|
$(".homepagePostSetting,.coursesLineGrey").mouseover(function(){
|
|
$(this).prev().css("color","#ffffff");
|
|
$(this).css("z-index", "9999");
|
|
})
|
|
$(".homepagePostSetting").mouseout(function(){
|
|
$(this).prev().css("color","#808080");
|
|
$(this).css("z-index", "1");
|
|
})
|
|
})
|
|
</script>
|
|
<% unless org_activities.nil? %>
|
|
<% org_activities.each do |act| %>
|
|
<script>
|
|
$(function() {
|
|
sd_create_editor_from_data(<%= act.id%>, null, "100%", "<%=act.class.to_s%>");
|
|
});
|
|
</script>
|
|
<% if act.container_type == 'Organization' %>
|
|
<% if act.org_act_type == 'CreateOrganization' %>
|
|
<div class="resources mt10">
|
|
<div class="homepagePostBrief">
|
|
<div class="homepagePostPortrait">
|
|
<a href="javascript:void(0);"><%= image_tag(url_to_avatar(User.find(act.user_id)), :width => "45", :height => "45") %></a>
|
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => User.find(act.user_id)} %>
|
|
</div>
|
|
<div class="homepagePostDes">
|
|
<div class="homepagePostTo"><%= link_to User.find(act.user_id), user_url_in_org(act.user_id) %> 创建了 <a href="<%= organization_path(@organization)%>" class="newsBlue ml10"><%= Organization.find(act.org_act_id).name %>
|
|
| 组织</a></div>
|
|
<div class="homepagePostDate"> 创建时间:<%= format_activity_day(act.created_at) %> <%= format_time(act.created_at, false) %> </div>
|
|
</div>
|
|
<div class="cl"></div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% if act.org_act_type == 'OrgDocumentComment' && act.org_act && act.org_act.organization.home_id != act.org_act.id %>
|
|
<%= render :partial => 'show_org_document', :locals => {:document => act.org_act, :act => act, :flag => 2, :org_subfield_id => params[:org_subfield_id]} %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if act.container_type == 'Project' %>
|
|
<% case act.org_act_type.to_s %>
|
|
<% when 'Issue' %>
|
|
<%= render :partial => 'users/project_issue', :locals => {:activity => Issue.find(act.org_act_id),:user_activity_id =>act.id} %>
|
|
<% when 'Message' %>
|
|
<%= render :partial => 'users/project_message', :locals => {:activity => Message.find(act.org_act_id),:user_activity_id =>act.id, :is_course=>0, :is_board=>0} %>
|
|
<% when 'Project'%>
|
|
<%= render :partial => 'organizations/project_create', :locals => {:activity => act,:user_activity_id =>act.id} %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if act.container_type == 'Course' %>
|
|
<% case act.org_act_type.to_s %>
|
|
<% when 'HomeworkCommon' %>
|
|
<%= render :partial => 'users/course_homework', :locals => {:activity => HomeworkCommon.find(act.org_act_id),:user_activity_id =>act.id,:course_activity => 0} %>
|
|
<% when 'News' %>
|
|
<%= render :partial => 'users/course_news', :locals => {:activity => News.find(act.org_act_id),:user_activity_id =>act.id} %>
|
|
<% when 'Message'%>
|
|
<%= render :partial => 'users/course_message', :locals => {:activity => Message.find(act.org_act_id),:user_activity_id =>act.id,:is_course=>0,:is_board=>0} %>
|
|
<% when 'Poll' %>
|
|
<%= render :partial => 'users/course_poll', :locals => {:activity => Poll.find(act.org_act_id), :user_activity_id => act.id} %>
|
|
<% when 'Course'%>
|
|
<%= render :partial => 'users/course_create', :locals => {:activity => Course.find(act.org_act_id), :user_activity_id => act.id} %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if act.container_type == 'OrgSubfield' %>
|
|
<% if act.org_act_type == 'Message' and act.org_act_id and Message.where("id=#{act.org_act_id}").count > 0 %>
|
|
<% message = Message.find(act.org_act_id) %>
|
|
<% if !message.board.course_id.nil? %>
|
|
<%= render :partial => 'users/course_message', :locals => {:activity => message,:user_activity_id =>act.id} %>
|
|
<% elsif message.board.project_id != -1 %>
|
|
<%= render :partial => 'users/project_message', :locals => {:activity => message,:user_activity_id =>act.id,:is_course=>0,:is_board=>0} %>
|
|
<% elsif message.board.org_subfield_id %>
|
|
<%= render :partial => 'organizations/org_subfield_message', :locals => {:activity => message, :user_activity_id => act.id} %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if act.org_act_type == 'News' and News.where("id=?", act.org_act_id).count > 0 %>
|
|
<% news = News.find(act.org_act_id) %>
|
|
<%= render :partial => 'organizations/org_subfield_news', :locals => {:activity => news, :user_activity_id => act.id} %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% if org_act_count == 10 %>
|
|
<%= link_to "点击展开更多",organization_path(org,:page => @page.to_i + 1, :show_homepage =>params[:show_homepage],:type => params[:type]),:id => "show_more_activities",:remote => "true",:class => "loadMore mt10 f_grey"%>
|
|
<% end%>
|
|
|