学生作品列表右上角的编辑和删除icon增加tip,两个icon的距离增加
This commit is contained in:
parent
70ce172b88
commit
41751f08ba
|
@ -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") %>
|
<% 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" >
|
<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>
|
||||||
<li class="fr" >
|
<li class="fr mr5" >
|
||||||
<%= link_to "",edit_student_work_path(work),:class => "pic_edit"%>
|
<%= link_to "",edit_student_work_path(work),:class => "pic_edit",:title => "修改"%>
|
||||||
</li>
|
</li>
|
||||||
<% end%>
|
<% end%>
|
||||||
<% if @homework.homework_detail_manual.comment_status == 3 && work.user != User.current%>
|
<% if @homework.homework_detail_manual.comment_status == 3 && work.user != User.current%>
|
||||||
|
|
Loading…
Reference in New Issue