91 lines
5.0 KiB
Plaintext
91 lines
5.0 KiB
Plaintext
<% selAttachType =@attachtype %>
|
|
<% selContentType =@contenttype %>
|
|
<% attachmenttypes = @project.attachmenttypes %>
|
|
<% delete_allowed = User.current.allowed_to?(:manage_files, @project) %>
|
|
<% edit_allowed = User.current.allowed_to?(:manage_files, @project) %>
|
|
<div class="autoscroll">
|
|
<table class="list files" id="ver-zebra" style=" table-layout: fixed">
|
|
<colgroup>
|
|
<col class="vzebra-odd"/>
|
|
<col class="vzebra-even"/>
|
|
<col class="vzebra-odd"/>
|
|
<col class="vzebra-even"/>
|
|
<!-- <col class="vzebra-odd"/> -->
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<%= sort_header_tag('filename', :caption => l(:field_filename), :scope => "col", :id => "vzebra-adventure",:class => "tableth") %>
|
|
<%= 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") %>
|
|
<%= content_tag('th', l(:attachment_sufix_browse), id: 'vzebra-contenttype', class: 'tableth', style: 'color: black')%>
|
|
<%= 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") %>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% if @curse_attachments != nil %>
|
|
<% @curse_attachments.each do |file| %>
|
|
<%if file.is_public == 0 && !User.current.member_of?(@project)%>
|
|
<%next%>
|
|
<%end%>
|
|
<tr class="file <%= cycle("odd", "odd") %>">
|
|
<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>
|
|
<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">
|
|
<span id="attach_type_id_label<%= file.id %>" style="white-space:nowrap;">
|
|
<%= file.attachmentstype.typeName %>
|
|
</span>
|
|
<span id="attach_type_id_edit<%= file.id %>" style="white-space:nowrap;">
|
|
<%= render :partial => 'attachments/type_edit', :locals => {:attachmenttypes => attachmenttypes, :attachment => file, :contentype => selContentType} %>
|
|
</span>
|
|
</td>
|
|
<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">
|
|
<span id="field_file_dense_id_label<%= file.id %>" style="white-space:nowrap;">
|
|
<%= file.file_dense_str %>
|
|
</span>
|
|
|
|
<span id="field_file_dense_id_edit<%= file.id %>" style="white-space:nowrap;">
|
|
<%= render :partial => 'project_file_dense_edit', :locals => {:file_dense_list => file.file_dense_list,
|
|
:attachment => file} %>
|
|
</span>
|
|
</td>
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="downloads">
|
|
<%= file.downloads %>
|
|
</td>
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" align="center">
|
|
<%= 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>
|
|
<% end -%>
|
|
<% end -%>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!--分页-->
|
|
<div class="pagination" style="float:left;">
|
|
<ul>
|
|
<%= pagination_links_full @feedback_pages %>
|
|
</ul>
|
|
</div>
|