add video tutorial link to about menu.
[sgn.git] / mason / analyses / model_detail_page_analyses_section.mas
blob9ff413d23fb2fbc3ee3bd46fdd4f3d4b8111c304
1 <%args>
2 $model_id
3 </%args>
5 <table class="table table-hover table-bordered" id="analyses_by_model_table">
6     <thead>
7         <tr>
8             <th>Analysis Name</th>
9             <th>Analysis Description</th>
10         </tr>
11     </thead>
12     <tbody>
13     </tbody>
14 </table>
16 <script>
17 jQuery(document).ready(function(){
19     jQuery('#analyses_by_model_table').DataTable({
20         'ajax': { 'url': '/ajax/analyses/by_model?model_id=<% $model_id %>' }
21     });
23 });
24 </script>