作业附件显示修改
This commit is contained in:
parent
463edeee71
commit
19530df395
|
@ -1,8 +1,24 @@
|
||||||
|
<table style="width: 200px;table-layout: fixed" >
|
||||||
|
<tr>
|
||||||
|
<% count = 0 %>
|
||||||
<% for attachment in attachments %>
|
<% for attachment in attachments %>
|
||||||
<%= link_to_attachment attachment, :class => 'icon icon-attachment', :download => true -%>
|
<% if attachments.count == 1 %>
|
||||||
<% if attachment.is_text? %>
|
<td title="<%= attachment.filename%>" style="width: 200px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
|
||||||
<%= link_to image_tag('magnifier.png'),
|
<%= render :partial => 'attachment', :locals => {:attachment => attachment} %>
|
||||||
:controller => 'attachments', :action => 'show',
|
</td>
|
||||||
:id => attachment, :filename => attachment.filename %>
|
<% elsif attachments.count == 2 %>
|
||||||
|
<td title="<%= attachment.filename%>" style="width: 100px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
|
||||||
|
<%= render :partial => 'attachment', :locals => {:attachment => attachment} %>
|
||||||
|
</td>
|
||||||
|
<% else %>
|
||||||
|
<td title="<%= attachment.filename%>" style="width: 66px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
|
||||||
|
<% if count == 3 %>
|
||||||
|
<% break %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end -%>
|
<%= render :partial => 'attachment', :locals => {:attachment => attachment} %>
|
||||||
|
<% count = count +1 %>
|
||||||
|
</td>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</tr>
|
||||||
|
</table>
|
|
@ -0,0 +1,6 @@
|
||||||
|
<%= link_to_attachment attachment, :class => 'icon icon-attachment', :download => true -%>
|
||||||
|
<% if attachment.is_text? %>
|
||||||
|
<%= link_to image_tag('magnifier.png'),
|
||||||
|
:controller => 'attachments', :action => 'show',
|
||||||
|
:id => attachment, :filename => attachment.filename,:style => "width:50px"%>
|
||||||
|
<% end %>
|
|
@ -132,8 +132,8 @@
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td style="vertical-align: top;width: 200px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
|
<td style="vertical-align: top;width: 200px;">
|
||||||
<% if is_evaluation %>
|
<% if is_evaluation || is_teacher%>
|
||||||
<%= render :partial => 'app_link', :locals => {:attachments => homework.attachments} %>
|
<%= render :partial => 'app_link', :locals => {:attachments => homework.attachments} %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue