26 lines
621 B
Plaintext
26 lines
621 B
Plaintext
<div class="enterprise_all">
|
|
<p>
|
|
<%= link_to l(:label_all_enterprises) %>
|
|
<p>
|
|
<p>
|
|
<% if @enterprises.count == 0 %>
|
|
<h3><%= l(:label_enterprise_nil) %></h3>
|
|
<% else %>
|
|
<% @enterprises.each do |enterprise| %>
|
|
<% unless enterprise.enterprise_name.blank? %>
|
|
<ul>
|
|
<li>
|
|
<%= link_to enterprise.enterprise_name, home_path(:originization => enterprise.enterprise_name) %>
|
|
</li>
|
|
</ul>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
</p>
|
|
</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)) -%>
|