The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<%doc>

=head2 view_related

This takes an object, and looks up the C<related_accessors>; this should
give a list of accessors that can be called to get a list of related
objects. It then displays a title for that accessor, (i.e. "Beers" for a
brewery) calls the accesor, and displays a list of the results.

=cut

</%doc>
<%args>
    $object
</%args>

% foreach my $accessor ( @{ $classmetadata->{related_accessors} } ) {
<div id="subtitle"><% ucfirst( $accessor ) %></div>
<ul id="vlist">
% foreach my $thing ( $object->$accessor ) {
<li><& maybe_link_view, object => $thing &></li>
% }
</ul>
% }