Merge pull request #5248 from solgenomics/topic/batch_update_trials
[sgn.git] / mason / qtl / qtl_load / compare_file_names.mas
blob889b8c85e7f85ef1390bcf8c7c313ae1e3b99d8f
1 <%doc>
3 =head1 NAME
5 compare_file_names.mas - a mason component for displaying message 
6 when a user tries to submit the same files for two different dataset fields...
7 =AUTHOR
9 Isaak Y Tecle (iyt2@cornell.edu)
11 =cut
13 </%doc>
15 <%args>
17 $file1
18 $file2
19 $guide
21 </%args>
23 <%perl>
24 my $message = qq | <p>You are trying to upload file(s) with the same name 
25                      <b>($file1 and $file2)</b> for this step and one of the 
26                      steps before it.
27                    </p>
29                    <p>Please go <a href="javascript:history.go(-1)"><b>back</b></a> 
30                      and check the file you are trying to upload or if you keep 
31                      having problem with it contact us.
32                    </p>
33                 | ;
36 </%perl>
38 <& /page/page_title.mas, title => 'Data files' &>
39 <&| /page/info_section.mas, title => '', subtitle => $guide &>
40   <% $message %>  
41 </&>