5 % my @fcvt = $feature->search_related('feature_cvterms', undef, { prefetch => { 'cvterm' => 'dbxref' } } );
7 <ul style="padding-left: 1em">
9 % for my $fcvt ( @fcvt ) {
10 % my $cvt = $fcvt->cvterm;
11 % my $dbxref = $cvt->dbxref;
13 % next unless $dbxref;
14 % my $db = $dbxref->db;
16 <a href="<% $db->urlprefix . $db->url . $dbxref->accession %>"><% $db->name %>:<% $dbxref->accession %></a>
18 <% cvterm_link( $fcvt->cvterm ) %>
27 use SGN::View::Feature qw/ cvterm_link /;