Changed db to cxgn-test
[sgn.git] / mason / solgs / search / result.mas
blob67879d72ef1d181e1a89b596a94819e9da70b328
1 <%doc>
3 solGS search results view.
5 </%doc>
7 <%args>
9 $result
10 $form
12 </%args>
14 <& /page/page_title.mas,
15     title => 'solGS search results',
17   
18 % if ($result) 
19 % { 
21 <&| /page/info_section.mas,
22       title => 'Search Results',
25 <& /page/columnar_table.mas,
26      headings    => [ 'Population', 'Location', 'Year', 'PI' ],
27      data        => $result,
28     __alt_freq   => 2,
29     __alt_width  => 1,
30     __align      => 'l'
31  &>
32 </&>
35 %else
37 <&| /page/info_section.mas,
38       title => 'No Search Results',
41 <br>No results. Search again with a different term.<br />
43 </&>
47 <&| /page/info_section.mas,
48     title       => 'Search',
49     collapsible => '1',
50     collapsed   =>  1
53 <& /search/solgs.mas, form => $form &>
55 </&>