Merge pull request #5248 from solgenomics/topic/batch_update_trials
[sgn.git] / mason / analytics_protocols / analytics_protocols_result_files.mas
blob5fbf83b5e34e4d5bda1dac2ab8b999687a011b17
1 <%args>
2 $analytics_protocol_id
3 $analytics_protocol_name
4 </%args>
6 <table class="table table-hover table-bordered" id="analytics_protocols_result_files_table">
7     <thead>
8         <tr>
9             <th>File Name</th>
10             <th>File Type</th>
11             <th>Download</th>
12         </tr>
13     </thead>
14     <tbody>
15     </tbody>
16 </table>
18 <script>
19 jQuery(document).ready(function(){
21     jQuery('#analytics_protocols_result_files_table').DataTable({
22         'ajax': { 'url': '/ajax/analytics_protocols/result_files?analytics_protocol_id=<% $analytics_protocol_id %>' }
23     });
25 });
26 </script>