<% @page_title = "user #{email_obfuscate(@person.user_name)}" %>

User: <%=h email_obfuscate(@person.user_name) %>

<% if @person.first_name %>

First Name: <%=h @person.first_name %>

<% end %> <% if @person.last_name %>

Last Name: <%=h @person.last_name %>

<% end %> <% if @person.email %>

Email: <%=h email_obfuscate(@person.email) %>

<% end %>

Ports

<% for row in columnize(@person.ports.sort, 4) %> <% for port in row %> <% end %> <% end %>
<%= link_to port.name, :controller => 'port', :action => 'show', :id => port if port %>

Packages

<% for row in columnize(@person.port_pkgs.sort, 16) %> <% for pkg in row %> <% end %> <% end %>
<%= link_to pkg.id, :controller => 'port_pkg', :action => 'show', :id => pkg if pkg %>