only show tomato annotation releases that have connectable databases
[sgn.git] / mason / markers / comments.mas
bloba183640724a28cf0ac38586176ca9851bcbc7b2b
2 <%doc>
4 =head1 NAME
6 /markers/overgo.mas - a Mason component displaying information about comments on markers stored in the database
8 =head1 DESCRIPTION
10 parameters 
12 =over 5
14 =item *
16 $marker - a CXGN::Marker object.
18 =back
20 =head1 AUTHOR
22 Lukas Mueller <lam87@cornell.edu>
24 =cut
26 </%doc>
28 <%args>
29 $marker
30 </%args>
32 <%perl>
33 my $comments=$marker->comments();
34 if($comments) {
35   return blue_section_html('Comments', newlines_to_brs($comments));
37 else {
38   return'';
41 </%perl>