Merge pull request #5248 from solgenomics/topic/batch_update_trials
[sgn.git] / mason / qtl / qtl_load / population_exists.mas
blob925750200e3f4eb8e2fa7d550cd5742cada96c01
1 <%doc>
3 =head1 NAME
5 population_exists.mas - a mason component for displaying message 
6 when a user tries to submit a population name the same with an existing one...
7 =AUTHOR
9 Isaak Y Tecle (iyt2@cornell.edu)
11 =cut
13 </%doc>
15 <%args>
17 $name
18 $guide
20 </%args>
22 <%perl>
23  my $message = qq | <p> It appears that a population <b>$name</></b> already 
24                    exists in the database. To continue loading QTL data
25                    for a new population, try with a different population 
26                    name.</p>
27                          
28                   <p>If you are trying to load more or change data to an 
29                   exising population contact us.</p>
31                  <p>Please go <a href="javascript:history.go(-1)">back</a> 
32                   and try to use a different name or if you keep having 
33                   problem with it contact us.</p>
34                  |;
38 </%perl>
40 <& /page/page_title.mas, title => 'QTL population' &>
41 <&| /page/info_section.mas, title => '', subtitle => $guide &>
42   <% $message %>  
43 </&>