30 lines
1.7 KiB
Plaintext
30 lines
1.7 KiB
Plaintext
<table class="newupload_table" cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<th class="newupload_td01"> </th>
|
|
<th class="pr tl">
|
|
<%= link_to "试卷标题", search_exercises_exercise_index_path(:course_id => course_id, :order => "exercise_name", :sort => @r_sort), :remote => true, :class => "ml5"%>
|
|
<% if order == "exercise_name" %>
|
|
<%= link_to "", search_exercises_exercise_index_path(:course_id => course_id, :order => "exercise_name", :sort => @r_sort), :class => "#{@r_sort == 'desc' ? 'sortupbtn' : 'sortdownbtn'}", :style => "position: absolute; top: 8px; left: 172px;", :remote => true %>
|
|
<% end %>
|
|
</th>
|
|
<th class="newupload_td03 tl" style="color: #7f7f7f;"><span class="ml5">来源</span></th>
|
|
<th class="newupload_td04 pr">
|
|
<%= link_to "创建时间", search_exercises_exercise_index_path(:course_id => course_id, :order => "created_at", :sort => @r_sort), :remote => true%>
|
|
<% if order == "created_at" %>
|
|
<%= link_to "", search_exercises_exercise_index_path(:course_id => course_id, :order => "created_at", :sort => @r_sort), :class => "#{@r_sort == 'desc' ? 'sortupbtn' : 'sortdownbtn'}", :style => "position: absolute; top: 8px; left: 75px;", :remote => true %>
|
|
<% end %>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% exercises.each do |exercise| %>
|
|
<tr class="">
|
|
<td class="newupload_td01"><input type="checkbox" name="exercise_id[]" value="<%=exercise.id %>"/></td>
|
|
<td class="newupload_td02"><p><%=exercise.exercise_name %></p></td>
|
|
<td class="newupload_td02"><p><%=exercise.course.name %></p></td>
|
|
<td class="newupload_td04"><%=format_date(exercise.created_at) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table> |