24 lines
813 B
Plaintext
24 lines
813 B
Plaintext
<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 %>
|
|
<% @projects.each do |project| %>
|
|
<% unless project.enterprise_name.blank? %>
|
|
<ul>
|
|
<li ><img src="/images/organization_logo.jpg" width="30" height="30" alt="#{project.enterprise_name}" />
|
|
<%= link_to project.enterprise_name, home_path(:project => project) %></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)) -%>
|