83 lines
2.2 KiB
Plaintext
83 lines
2.2 KiB
Plaintext
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', :media => 'all' %>
|
|
<h3>
|
|
<%=l(:label_excellent_courses_list)%>
|
|
</h3>
|
|
<%= render 'tab_excellent_courses' %>
|
|
|
|
<h3>
|
|
<%=l(:label_excellent_courses_list)%>
|
|
</h3>
|
|
|
|
<div class="autoscroll">
|
|
<table class="list" style="width: 100%;table-layout: fixed">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 25px;">
|
|
序号
|
|
</th>
|
|
<th style="width: 120px;">
|
|
课程名
|
|
</th>
|
|
<th style="width: 50px;">
|
|
主讲老师
|
|
</th>
|
|
<th style="width: 30px;">
|
|
学生数
|
|
</th>
|
|
<th style="width: 25px;">
|
|
作业数
|
|
</th>
|
|
<th style="width: 25px;">
|
|
作品数
|
|
</th>
|
|
<th style="width: 25px;">
|
|
资源数
|
|
</th>
|
|
<th style="width: 70px;">
|
|
帖子数
|
|
</th>
|
|
<th style="width: 70px;">
|
|
动态数
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @courses.each do |course| %>
|
|
<tr class="<%= cycle("odd", "even") %>">
|
|
<td style="text-align: center;">
|
|
<%= course.id %>
|
|
</td>
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name" title='<%=course.name%>'>
|
|
<span>
|
|
<%= link_to(course.name, course_path(course.id)) %>
|
|
</span>
|
|
</td>
|
|
<td align="center">
|
|
<%= link_to(course.try(:teacher).try(:realname).truncate(6, omission: '...'), user_path(course.teacher)) %>
|
|
</td>
|
|
<td align="center">
|
|
<%= studentCount(course) %>
|
|
</td>
|
|
<td class="center">
|
|
<%= course.homework_commons.count%>
|
|
</td>
|
|
<td class="center">
|
|
<%= student_works_num(course) %>
|
|
</td>
|
|
<td class="center">
|
|
<%= visable_attachemnts_incourse(course).count%>
|
|
</td>
|
|
<td class="center">
|
|
<%= course.boards.first.topics.count + Message.where("board_id =? and parent_id is not ?", course.boards.first.id, nil).count %>
|
|
|
|
</td>
|
|
<td class="center">
|
|
<%= course.course_activities.count%>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<% html_title(l(:label_excellent_courses_list)) -%> |