This commit is contained in:
nieguanghui 2014-01-14 10:12:55 +08:00
parent d09e995f52
commit 54aef57287
1 changed files with 3 additions and 3 deletions

View File

@ -81,15 +81,15 @@
<tr>
<td>文件名</td>
<td>下载次数</td>
<td>下载次数</td>
<td>下载</td>
</tr>
</thead>
<tbody>
<% k.each do |c1|%>
<tr class="<%= cycle 'odd', 'even' %>">
<td class="filename" style="width:62%;"><%= link_to_attachment c1 %></td>
<td class="filename" style="width:62%;"><%= link_to c1.filename, (attachFromUrl c1) %> </td>
<td style="width:19%;"><%= c1.downloads %> </td>
<td style="width:19%;"><%= attachFromUrl c1 %> </td>
<td class="filename" style="width:19%;"><%= link_to_attachment c1, {:text => "下载"}%></td>
</tr>
<% end %>
</tbody>