10 lines
760 B
Plaintext
10 lines
760 B
Plaintext
<ul>
|
|
<!-- <li><span class="relatedListName fb fl">名称</span><span class="relatedListOption fb fl">操作</span></li>-->
|
|
<% orgs.each do |org| %>
|
|
<li class="clear mb5"><a href="<%= organization_path(org) %>" class="fl"><%= org.name %></a>
|
|
<a href = "javascript:void(0);" onclick = "cancel_relation('<%= OrgProject.where(:organization_id => org.id, :project_id => project_id).first.id %>','<%=project_id %>')" class="fr sy_btn_grey ml5" >删除</a>
|
|
<%#= link_to "取消关联", org_project_path(:id => OrgProject.where(:organization_id => org.id, :project_id => project_id).first.id, :project_id => project_id),
|
|
:method => 'delete',:remote => true, :class => "relatedListOption fl linkGrey3" %>
|
|
</li>
|
|
<% end %>
|
|
</ul> |