<% course_list.map do |course| %>
  • <%= image_tag(get_course_avatar(course), :class => "avatar-4") %>
    <% unless course.is_public == 1 %> <%= l(:label_private) %> <% end %> <%= link_to(course.name+":", course_path(course.id), :class => "d-g-blue d-p-project-name", :title => "#{course.name}") %>
    <%= link_to(course.try(:teacher).try(:realname).truncate(6, omission: '...'), user_path(course.teacher)) %> <%#=course.try(:teacher).try(:name)%>
    [<%= get_course_term course %>] <% if (course.school == nil) %>               <% else %> <%= link_to course.school.name.try(:gsub, /(.+)$/, '\1'), options={:action => 'course', :school_id => course.school.id}, html_options={:method => 'get'} %> <% end %> (<%= course.members.count %>人) <% files_count = visable_attachemnts_incourse(course).count %> <% if files_count > 0%> (<%= link_to "#{files_count.to_s}份", course_files_path(course) %>公开资料) <% end %>
  • <% end %>