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

Ajax

开发平台:

Others

  1.     <h4><%= _("Currently this article has the following resources")%></h4>
  2.     <% for resource in @article.resources %>
  3.       <%= link_to_remote "- #{resource.filename}", :url => { :action => "resource_remove", :id => @article.id, :resource_id => resource.id}, :update => 'resources' %><br/>
  4.     <% end %>
  5.     <h4><%= _("You can associate the following resources")%></h4>
  6.     <% for resource in @resources - @article.resources %>
  7.       <%= link_to_remote "+ #{resource.filename}", :url => { :action => "resource_add", :id => @article.id, :resource_id => resource.id}, :update => 'resources' %><br/>
  8.     <% end %>