fix test with new description field.
[sgn.git] / mason / breeders_toolbox / program / program_seedlots.mas
blob53ab2b7b7bd20cc2f578e2a5861adfe9ebf1e4b5
1 <%args>
2 $program_id
3 </%args>
5 <& /util/import_javascript.mas, classes => [ 'jquery', 'jquery.dataTables' ] &>
6 <& /util/import_css.mas, paths => ['/documents/inc/datatables/jquery.dataTables.css'] &>
9 <table id="program_seedlot_table" class="display">
10     <thead>
11         <tr>
12             <th>Seedlot Name</th>
13             <th>Content</th>
14             <th>Content Type</th>
15         </tr>
16     </thead>
17 </table>
19 <script>
21 jQuery(document).ready(function () {
23     jQuery('#program_seedlot_table').DataTable( {
24         'autoWidth': false,
25         'ajax': '/ajax/breeders/program/'+ <% $program_id %> + '/seedlots',
26     });
28 });
31 </script>