2015-03-18 18:03:17 +08:00
|
|
|
|
<div class="project_r_h">
|
|
|
|
|
<h2 class="project_h2"><%= l(:label_activity)%></h2>
|
2014-07-03 16:16:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
2015-03-18 18:03:17 +08:00
|
|
|
|
<% if @events_by_day != nil && @events_by_day.size >0 %>
|
|
|
|
|
<% @events_by_day.keys.sort.reverse.each do |day| %>
|
|
|
|
|
<% sort_activity_events(@events_by_day[day]).each do |e, in_group| -%>
|
|
|
|
|
<div class="problem_main">
|
|
|
|
|
<a class="problem_pic fl">
|
|
|
|
|
<%= image_tag(url_to_avatar(e.event_author), :width => "42", :height => "42") %>
|
|
|
|
|
</a>
|
2015-04-10 15:43:37 +08:00
|
|
|
|
<div class="problem_txt fl mt5 upload_img">
|
2015-03-19 11:42:52 +08:00
|
|
|
|
<%= link_to_user_header(e.event_author,false,:class => 'problem_name c_orange fl') if e.respond_to?(:event_author) %>
|
|
|
|
|
<%= link_to_user_header("(#{e.event_author})", @canShowRealName,:class => 'problem_name c_orange fl') if @canShowRealName && e.respond_to?(:event_author) %>
|
2015-04-03 11:30:48 +08:00
|
|
|
|
<span class="fl"> </span>
|
2015-03-19 11:42:52 +08:00
|
|
|
|
<span class="fl"> <%= l(:label_new_activity) %>:</span>
|
2015-04-10 14:36:30 +08:00
|
|
|
|
<%= link_to "#{eventToLanguageCourse(e.event_type, @course)} "<< format_activity_title(e.event_title), (e.event_type.eql?("attachment")&&e.container.kind_of?(Course)) ? course_files_path(e.container) :
|
|
|
|
|
(e.event_type.eql?("bid") ? homework_course_path(@course) : e.event_url),:class => "problem_tit c_dblue fl fb"%>
|
2015-03-18 18:03:17 +08:00
|
|
|
|
<br />
|
2015-04-08 14:32:42 +08:00
|
|
|
|
<p class="mt5 break_word"><%= e.event_description.html_safe %>
|
2015-03-18 18:03:17 +08:00
|
|
|
|
<br />
|
2015-04-03 11:30:48 +08:00
|
|
|
|
<%= l :label_activity_time %> : <%= format_activity_day(day) %> <%= format_time(e.event_datetime, false) %>
|
2015-03-18 18:03:17 +08:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div><!--课程动态 end-->
|
|
|
|
|
<% end%>
|
|
|
|
|
<% end%>
|
|
|
|
|
<% end%>
|
2015-04-03 11:30:48 +08:00
|
|
|
|
<% if @obj_pages.next_page.nil? %>
|
2015-03-19 11:42:52 +08:00
|
|
|
|
<div class="problem_main">
|
|
|
|
|
<a class="problem_pic fl">
|
|
|
|
|
<%= image_tag(url_to_avatar(@user), :width => "42", :height => "42") %>
|
|
|
|
|
</a>
|
|
|
|
|
<div class="problem_txt fl mt5">
|
|
|
|
|
<%= link_to_user_header(@user,false,:class => 'problem_name c_orange fl') %>
|
|
|
|
|
<%= link_to_user_header("(#{@user})", @canShowRealName,:class => 'problem_name c_orange fl') if @canShowRealName %>
|
|
|
|
|
<span class="fl"> <%= l(:label_user_create_project) %>:</span>
|
|
|
|
|
<%= link_to @course.name,course_path(@course),:class => "problem_tit c_dblue fl fb"%>
|
|
|
|
|
<br />
|
|
|
|
|
<p class="mt5">
|
|
|
|
|
<br />
|
2015-04-16 16:39:52 +08:00
|
|
|
|
<%= l :label_create_time %> : <%= format_time(@course.created_at) %>
|
2015-03-19 11:42:52 +08:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div><!--课程动态 end-->
|
2015-04-03 11:30:48 +08:00
|
|
|
|
<% end%>
|
2015-03-19 14:30:06 +08:00
|
|
|
|
<ul class="wlist">
|
|
|
|
|
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true%>
|
|
|
|
|
</ul>
|
2015-03-18 18:03:17 +08:00
|
|
|
|
<div class="cl"></div>
|