2014-06-09 17:33:43 +08:00
|
|
|
<% selAttachType =@attachtype %>
|
|
|
|
<% selContentType =@contenttype %>
|
|
|
|
<% attachmenttypes = @course.attachmenttypes %>
|
|
|
|
<% delete_allowed = User.current.allowed_to?(:manage_files, @course) %>
|
|
|
|
<% edit_allowed = User.current.allowed_to?(:manage_files, @course) %>
|
2014-08-22 13:43:48 +08:00
|
|
|
<table class="list files" id="ver-zebra" style="table-layout: fixed">
|
2014-06-09 17:33:43 +08:00
|
|
|
<colgroup>
|
|
|
|
<col class="vzebra-odd"/>
|
|
|
|
<col class="vzebra-even"/>
|
|
|
|
<col class="vzebra-odd"/>
|
|
|
|
<col class="vzebra-even"/>
|
|
|
|
<!-- <col class="vzebra-odd"/> -->
|
|
|
|
</colgroup>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2014-10-10 11:46:59 +08:00
|
|
|
<%= sort_header_tag('filename', :caption => l(:field_filename), :scope => "col", :id => "vzebra-adventure" ,:class => "tableth") %>
|
2014-06-09 17:33:43 +08:00
|
|
|
<%#= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc', :scope => "col", :id => "vzebra-comedy") %>
|
2014-10-10 11:46:59 +08:00
|
|
|
<%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc', :scope => "col", :id => "vzebra-children",:class => "tableth") %>
|
|
|
|
<%= sort_header_tag('attach_type', :caption => l(:attachment_browse), :default_order => 'desc', :scope => "col", :id => "vzebra-attachmenttype",:class => "tableth") %>
|
|
|
|
<%= sort_header_tag('content_type', :caption => l(:attachment_sufix_browse), :default_order => 'desc', :scope => "col", :id => "vzebra-contenttype",:class => "tableth") %>
|
|
|
|
<%= sort_header_tag('field_file_dense', :caption => l(:field_file_dense), :default_order => 'desc', :scope => "col", :id => "vzebra-field_file_dense",:class => "tableth") %>
|
|
|
|
<%= sort_header_tag('downloads', :caption => l(:field_downloads), :default_order => 'desc', :scope => "col", :id => "vzebra-action",:class => "tableth") %>
|
|
|
|
<%= sort_header_tag('operation', :caption => "", :scope => "col", :id => "vzebra-children",:class => "tableth") %>
|
2014-08-06 15:10:53 +08:00
|
|
|
<!-- <%#= sort_header_tag('description', :caption => l(:field_description)) %> -->
|
2014-06-09 17:33:43 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2014-08-21 10:37:53 +08:00
|
|
|
<%# @containers.each do |container| %>
|
|
|
|
<%# next if container.attachments.empty? -%>
|
|
|
|
<%# if container.is_a?(Version) -%>
|
|
|
|
<!--<tr>
|
2014-06-09 17:33:43 +08:00
|
|
|
<th colspan="5" align="left" style="line-height: 30px; font-size: 14px; ">
|
2014-08-21 10:37:53 +08:00
|
|
|
<%#= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package", :style => "color: #666666;") %>
|
2014-06-09 17:33:43 +08:00
|
|
|
</th>
|
2014-08-21 10:37:53 +08:00
|
|
|
</tr>-->
|
|
|
|
<%# end -%>
|
|
|
|
<% if @curse_attachments != nil %>
|
|
|
|
<% @curse_attachments.each do |file| %>
|
|
|
|
<%if file.is_public == 0 && !User.current.member_of_course?(@course)%>
|
|
|
|
<%next%>
|
|
|
|
<%end%>
|
|
|
|
<tr class="file <%= cycle("odd", "odd") %>">
|
2014-08-22 13:43:48 +08:00
|
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="filename" style="font-size: 13px; "><%= link_to_attachment file, :download => true, :title => file.filename+"\n"+file.description.to_s, :style => "width: 230px; overflow: hidden; white-space: nowrap;text-overflow: ellipsis;" %></td>
|
2014-08-21 10:37:53 +08:00
|
|
|
<!-- <td class="created_on"><%#= format_time(file.created_on) %></td> -->
|
2014-08-22 13:43:48 +08:00
|
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="filesize"><%= number_to_human_size(file.filesize) %></td>
|
|
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="attach_type">
|
2014-08-21 10:37:53 +08:00
|
|
|
<span id="attach_type_id_label<%= file.id %>" style="white-space:nowrap;"><%= file.attachmentstype.typeName unless file.attachmentstype.nil? %></span>
|
2014-06-09 17:33:43 +08:00
|
|
|
<span id="attach_type_id_edit<%= file.id %>" style="white-space:nowrap;">
|
2014-06-18 15:48:06 +08:00
|
|
|
<%= render :partial => 'attachments/course_type_edit', :locals => {:attachmenttypes => attachmenttypes, :attachment => file, :contentype => selContentType} %>
|
2014-06-09 17:33:43 +08:00
|
|
|
</span>
|
2014-08-21 10:37:53 +08:00
|
|
|
</td>
|
2014-08-22 13:43:48 +08:00
|
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="content_type"><%= file.show_suffix_type %></td>
|
|
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="field_file_dense">
|
2014-08-21 10:37:53 +08:00
|
|
|
<span id="field_file_dense_id_label<%= file.id %>" style="white-space:nowrap;"><%= file.file_dense_str %></span>
|
|
|
|
|
2014-07-11 09:07:09 +08:00
|
|
|
<span id="field_file_dense_id_edit<%= file.id %>" style="white-space:nowrap;">
|
|
|
|
<%= render :partial => 'course_file_dense_edit', :locals => {:file_dense_list => file.file_dense_list,
|
|
|
|
:attachment => file} %>
|
|
|
|
</span>
|
2014-08-21 10:37:53 +08:00
|
|
|
</td>
|
2014-08-22 13:43:48 +08:00
|
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="downloads"><%= file.downloads %></td>
|
2014-08-21 10:37:53 +08:00
|
|
|
<!-- <td class="digest" width="300px"><%= file.description %></td> -->
|
2014-08-22 13:43:48 +08:00
|
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" align="center">
|
2014-08-21 10:37:53 +08:00
|
|
|
<%= link_to(image_tag('delete.png'), attachment_path(file),
|
|
|
|
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete) if delete_allowed %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class='description' colspan="6">
|
|
|
|
<div class="tags_area">
|
|
|
|
<%# @preTags = %w|预设A 预设B 预设C 预设D 预设E 预设Z | %>
|
|
|
|
<%= render :partial => 'tags/tag', :locals => {:obj => file, :object_flag => "6"} %>
|
|
|
|
<div class="tags_gradint"></div>
|
|
|
|
</div>
|
|
|
|
<div class="read-more hidden"><a href="javascript:void(0);" onclick="readmore(this);"> 更多 </a></div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2014-06-09 17:33:43 +08:00
|
|
|
<% end -%>
|
2014-08-21 10:37:53 +08:00
|
|
|
<% end %>
|
|
|
|
<%# reset_cycle %>
|
|
|
|
<%# end -%>
|
2014-06-09 17:33:43 +08:00
|
|
|
<!-- %= h downloadAll(@containers) % -->
|
|
|
|
<!-- %= link_to "download all file", (downloadAll(@containers)) % -->
|
|
|
|
|
2014-08-21 10:37:53 +08:00
|
|
|
|
|
|
|
|
2014-06-09 17:33:43 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-08-21 10:37:53 +08:00
|
|
|
<!--分页-->
|
|
|
|
<div class="pagination" style="float:left;">
|
|
|
|
<ul>
|
|
|
|
<%= pagination_links_full @feedback_pages %>
|
|
|
|
</ul>
|
|
|
|
</div>
|