educoder/app/views/student_work/_evaluation_title.html.erb

18 lines
582 B
Plaintext

<table class="edu-pop-table edu-txt-center" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>序号</th>
<th>姓名</th>
<th>更新时间</th>
<th>评分</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<% @stundet_works.each_with_index do |student_work, i|%>
<% score_open = @homework.score_open == 1 || student_work.user == User.current %>
<a name="<%= student_work.id%>"></a>
<%= render :partial => "evaluation_work", :locals => {:student_work => student_work, :index => i, :score_open => score_open}%>
<% end%>
</tbody>
</table>