2015-01-31 15:43:35 +08:00
|
|
|
<title><%= l(:label_all_enterprises) %></title>
|
|
|
|
<div class="content_syqy">
|
|
|
|
<div class="list"><%= l(:label_all_enterprises) %></div>
|
|
|
|
<div class="syqy_box">
|
|
|
|
<% if @projects.count == 0 %>
|
|
|
|
<h3><%= l(:label_enterprise_nil) %></h3>
|
|
|
|
<% else %>
|
2015-02-03 11:24:46 +08:00
|
|
|
<% @projects.each do |organization| %>
|
|
|
|
<% unless organization.enterprise_name.blank? %>
|
2015-01-31 15:43:35 +08:00
|
|
|
<ul>
|
|
|
|
<li ><img src="/images/organization_logo.jpg" width="30" height="30" alt="#{project.enterprise_name}" />
|
2015-02-03 11:24:46 +08:00
|
|
|
<%= link_to organization.enterprise_name, home_path(:organization => organization) %></li>
|
2015-01-31 15:43:35 +08:00
|
|
|
</ul>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="clear: both"></div>
|
|
|
|
<div class="school-index">
|
|
|
|
<ul id="schoollist" style="line-height: 25px"></ul>
|
|
|
|
</div>
|
|
|
|
<% html_title(l(:label_enterprise_all)) -%>
|