Person

<%= image_tag "person.png", :class => 'icon' %>

<%= @person.name %> <%= link_to "[edit]", edit_person_path(@person) %>

<%= @person.desc %>

Link

<%= link_to @person.link, @person.link, :class => 'link' %>
<%= @person.name %> is included in these groups
<% @gparents.each do |group| %> <%= render group %> <% end %> <% if @gparents.empty? %>

Shucks, there are no groups.

<% end %>
<%= @person.name %> includes these items
<% @ichildren.each do |item| %> <%= render item %> <% end %> <% if @ichildren.empty? %>

Shucks, there are no items.

<% end %>