71 lines
1.9 KiB
Plaintext
71 lines
1.9 KiB
Plaintext
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', :media => 'all' %>
|
|
<h3>
|
|
精品课程列表
|
|
</h3>
|
|
<%= render 'tab_excellent_courses' %>
|
|
|
|
<h3>
|
|
全部课程列表
|
|
</h3>
|
|
|
|
<%= form_tag({}, :method => :get) do %>
|
|
<fieldset>
|
|
<label for='name'>
|
|
课程:
|
|
</label>
|
|
<%= text_field_tag 'name', params[:name], :size => 30, :placeholder => '课程名称' %>
|
|
<%= submit_tag l(:button_apply), :class => "small", :name => nil %>
|
|
<%= link_to l(:button_clear), {:controller => 'admin', :action => 'excellent_all_courses'}, :class => 'icon icon-reload' %>
|
|
</fieldset>
|
|
<% end %>
|
|
|
|
|
|
<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: 50px;">
|
|
帖子数
|
|
</th>
|
|
<th style="width: 50px;" class = "<%= @order == 'desc' ? 'st_up' : (@order == 'asc' ? 'st_down' : '') %>">
|
|
<%=link_to '动态数', excellent_all_courses_path(:order=> @order == "desc" ? 'asc' : 'desc') %>
|
|
</th>
|
|
<th style="width: 40px;">
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @courses.each do |course| %>
|
|
<tr class="<%= cycle("odd", "even") %>" id="tr_<%= course.id %>">
|
|
<%= render :partial => 'course_detail_tr', :locals => {:course => course} %>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="pagination">
|
|
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %>
|
|
</div>
|
|
|
|
<% html_title(l(:label_excellent_courses_list)) -%> |