index.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <% @page_heading = _('Uploads') %>
  2. <% subtabs_for(:content) %>
  3. <%= render :partial => 'upload' -%>
  4. <table>
  5. <tr>
  6.   <th><%= _("Filename")%> <small>(<%= _('right-click for link')%>)</small></th>
  7.   <th><%= _("Content Type")%></th>
  8.   <th><%= _("File Size")%></th>
  9.   <th><%= _("Date")%></th>
  10.   <th><%= _("Delete")%></th>
  11. </tr>
  12. <%= render_void_table(@resources.size, 6) %>
  13. <% for upload in @resources -%>
  14. <tr <%= alternate_class -%>>
  15.   <td><%= link_to ("#{upload.filename}", "#{this_blog.base_url}/files/#{upload.filename}", {:rel => 'lightbox'}) -%></td>
  16.   <td>
  17.     <%= task_edit_resource_mime(upload.mime, upload.id) %>
  18.     <div id="edit-resource-mime-<%= upload.id %>" style="display:none;position:absolute;">
  19.       <%= render :partial => "mime_edit", :locals => {:id => upload.id, :mime => upload.mime} %>
  20.     </div>
  21.   </td>
  22.   <td><%=h upload.size rescue 0 -%> bytes</td>
  23.   <td><%= format_date upload.created_at -%></td>
  24.   <td class="operation"><%= link_to _("delete"), {:action => 'destroy', :id => upload.id, :search => params[:search], :page => params[:page] },  :confirm => _("Are you sure?"), :method => :post %></td>
  25. </tr>  
  26. <% end -%>
  27.   <%= display_pagination(@resources, 6)%>
  28. </table>