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

Ajax

开发平台:

Others

  1. <li id="attachment_<%= attachment_num -%>"<% if hidden %> style="display: none;"<% end %>>
  2.   <%= file_field 'attachments', "filename_#{attachment_num}" -%>
  3.   <%= link_to_function(_("Remove"),
  4.       update_page do |page|
  5.         page << "if (confirm(_('Really delete attachment') +' #{attachment_num}?')){"
  6.         page.visual_effect(:toggle_appear, "attachment_#{attachment_num}", :afterFinish => "function(obj){Element.remove(obj.element);}")
  7.         page << "}"
  8.       end) -%>
  9. </li>
  10. <li id="attachment_add_<%= attachment_num.succ %>">
  11.   <%= link_to_remote _('Add Another Attachment'),
  12.     :url => { :action => "attachment_box_add", :id => attachment_num.succ },
  13.     :asynchronus => false -%>
  14. </li>
  15. <% if @article and @article.id %>
  16. <li id="resources">
  17.   <% if  @article.resources.count > 0 %>
  18.     <h3><%= _("Currently this article has the following resources")%></h3>
  19.     <% for resource in @article.resources %>
  20.       <%= link_to_remote "- #{resource.filename}", :url => { :action => "resource_remove", :id => @article.id, :resource_id => resource.id}, :update => 'resources' %><br/>
  21.     <% end %>
  22.   <% end %>
  23.   
  24.   <h3><%= _("You can associate the following resources")%></h3>
  25.   <% for resource in @resources - @article.resources %>
  26.     <%= link_to_remote "+ #{resource.filename}", :url => { :action => "resource_add", :id => @article.id, :resource_id => resource.id}, :update => 'resources' %><br />
  27.   <% end %>
  28. </li>
  29. <% end %>