学生作品列表右上角的编辑和删除icon增加tip,两个icon的距离增加

This commit is contained in:
cxt 2015-11-12 11:31:35 +08:00
parent 70ce172b88
commit 41751f08ba
1 changed files with 3 additions and 3 deletions

View File

@ -9,10 +9,10 @@
<% if work.user == User.current && Time.parse(@homework.end_time.to_s).strftime("%Y-%m-%d") >= Time.now.strftime("%Y-%m-%d") %>
<!-- 我的作业 && 匿评作业 && 未开启匿评,显示编辑和删除按钮 -->
<li class="fr" >
<%= link_to("", student_work_path(work),:method => 'delete', :confirm => l(:text_are_you_sure), :class => "pic_del") %>
<%= link_to("", student_work_path(work),:method => 'delete', :confirm => l(:text_are_you_sure), :class => "pic_del",:title=>"删除") %>
</li>
<li class="fr" >
<%= link_to "",edit_student_work_path(work),:class => "pic_edit"%>
<li class="fr mr5" >
<%= link_to "",edit_student_work_path(work),:class => "pic_edit",:title => "修改"%>
</li>
<% end%>
<% if @homework.homework_detail_manual.comment_status == 3 && work.user != User.current%>