|
|
|
@ -1,4 +1,53 @@
|
|
|
|
|
<!-- <h3> --><!-- %=l(:label_attachment_plural)%></h3 -->
|
|
|
|
|
<style>
|
|
|
|
|
table {
|
|
|
|
|
line-height: 25px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
#ver-zebra
|
|
|
|
|
{
|
|
|
|
|
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin: 20px;
|
|
|
|
|
width: 98%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
}
|
|
|
|
|
#ver-zebra th
|
|
|
|
|
{
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
padding: 12px 15px;
|
|
|
|
|
border-right: 1px solid #fff;
|
|
|
|
|
border-left: 1px solid #fff;
|
|
|
|
|
color: #039;
|
|
|
|
|
}
|
|
|
|
|
#ver-zebra td
|
|
|
|
|
{
|
|
|
|
|
padding: 8px 15px;
|
|
|
|
|
border-right: 1px solid #fff;
|
|
|
|
|
border-left: 1px solid #fff;
|
|
|
|
|
color: #669;
|
|
|
|
|
}
|
|
|
|
|
.vzebra-odd
|
|
|
|
|
{
|
|
|
|
|
background: #eff2ff;
|
|
|
|
|
}
|
|
|
|
|
.vzebra-even
|
|
|
|
|
{
|
|
|
|
|
background: #e8edff;
|
|
|
|
|
}
|
|
|
|
|
#ver-zebra #vzebra-adventure, #ver-zebra #vzebra-children
|
|
|
|
|
{
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-bottom: 1px solid #c8d4fd;
|
|
|
|
|
}
|
|
|
|
|
#ver-zebra #vzebra-comedy, #ver-zebra #vzebra-action
|
|
|
|
|
{
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-bottom: 1px solid #d6dfff;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<div class="content-title-top">
|
|
|
|
|
<% if @project.project_type == 1 %>
|
|
|
|
@ -14,14 +63,20 @@
|
|
|
|
|
|
|
|
|
|
<% delete_allowed = User.current.allowed_to?(:manage_files, @project) %>
|
|
|
|
|
|
|
|
|
|
<table class="list files">
|
|
|
|
|
<table class="list files" id="ver-zebra">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col class="vzebra-odd" />
|
|
|
|
|
<col class="vzebra-even" />
|
|
|
|
|
<col class="vzebra-odd" />
|
|
|
|
|
<col class="vzebra-even" />
|
|
|
|
|
</colgroup>
|
|
|
|
|
<thead><tr>
|
|
|
|
|
<%= sort_header_tag('filename', :caption => l(:field_filename)) %>
|
|
|
|
|
<%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %>
|
|
|
|
|
<%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %>
|
|
|
|
|
<%= sort_header_tag('downloads', :caption => l(:field_downloads), :default_order => 'desc') %>
|
|
|
|
|
<%= sort_header_tag('description', :caption => l(:field_description)) %>
|
|
|
|
|
<th></th>
|
|
|
|
|
<%= sort_header_tag('filename', :caption => l(:field_filename), :scope =>"col" , :id => "vzebra-adventure")%>
|
|
|
|
|
<%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc', :scope =>"col" , :id => "vzebra-comedy")%>
|
|
|
|
|
<%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc', :scope =>"col", :id=> "vzebra-children")%>
|
|
|
|
|
<%= sort_header_tag('downloads', :caption => l(:field_downloads), :default_order => 'desc', :scope =>"col", :id => "vzebra-action") %>
|
|
|
|
|
<%= sort_header_tag('downloads', :caption => "操作", :scope =>"col", :id => "vzebra-children") %>
|
|
|
|
|
<!-- <%= sort_header_tag('description', :caption => l(:field_description)) %> -->
|
|
|
|
|
</tr></thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<% @containers.each do |container| %>
|
|
|
|
@ -39,7 +94,7 @@
|
|
|
|
|
<td class="created_on"><%= format_time(file.created_on) %></td>
|
|
|
|
|
<td class="filesize"><%= number_to_human_size(file.filesize) %></td>
|
|
|
|
|
<td class="downloads"><%= file.downloads %></td>
|
|
|
|
|
<td class="digest" width="300px"><%= file.description %></td>
|
|
|
|
|
<!-- <td class="digest" width="300px"><%= file.description %></td> -->
|
|
|
|
|
<td align="center">
|
|
|
|
|
<%= link_to(image_tag('delete.png'), attachment_path(file),
|
|
|
|
|
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete) if delete_allowed %>
|
|
|
|
|