2015-03-05 14:15:07 +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 @organizations.empty? %>
|
|
|
|
<h3>
|
|
|
|
<%= l(:label_enterprise_nil) %>
|
|
|
|
</h3>
|
|
|
|
<% else %>
|
|
|
|
<% @organizations.each do |organization| %>
|
|
|
|
<% unless organization.name.blank? %>
|
|
|
|
<ul>
|
|
|
|
<li >
|
2015-03-05 14:42:46 +08:00
|
|
|
<img src="/images/organization_logo.jpg" width="30" height="30" alt="<%= organization.name%>" />
|
2015-03-05 14:15:07 +08:00
|
|
|
<%= link_to organization.name, home_path(:organization => organization.id) %>
|
|
|
|
</li>
|
|
|
|
</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)) -%>
|