% @page_title = "all ports" %>
All ports
<% for row in columnize(@ports.sort, 4) %>
<% for port in row %>
<%= link_to port.name, :controller => 'port', :action => 'show', :id => port if !port.nil? %> |
<% end %>
<% end %>
<%= link_to 'Previous page', { :page => @port_pages.current.previous } if @port_pages.current.previous %>
<%= link_to 'Next page', { :page => @port_pages.current.next } if @port_pages.current.next %>