Lines 3-9
Link Here
|
3 |
[% IF enrollments %] |
3 |
[% IF enrollments %] |
4 |
<h4>Clubs currently enrolled in</h4> |
4 |
<h4>Clubs currently enrolled in</h4> |
5 |
|
5 |
|
6 |
<table> |
6 |
<table id="table_clubenrollments"> |
7 |
<thead> |
7 |
<thead> |
8 |
<tr> |
8 |
<tr> |
9 |
<th>Name</th> |
9 |
<th>Name</th> |
Lines 36-42
Link Here
|
36 |
|
36 |
|
37 |
<h4>Clubs not enrolled in</h4> |
37 |
<h4>Clubs not enrolled in</h4> |
38 |
|
38 |
|
39 |
<table> |
39 |
<table id="table_clubnoenrollmemnts"> |
40 |
<thead> |
40 |
<thead> |
41 |
<tr> |
41 |
<tr> |
42 |
<th>Name</th> |
42 |
<th>Name</th> |
Lines 63-68
Link Here
|
63 |
</table> |
63 |
</table> |
64 |
[% END %] |
64 |
[% END %] |
65 |
|
65 |
|
|
|
66 |
<script> |
67 |
$("#table_clubnoenrollmemnts, #table_clubenrollments").dataTable($.extend(true, {}, dataTablesDefaults, { |
68 |
"columnDefs": [ |
69 |
{ 'sortable': false, 'targets': [ 'NoSort' ] } |
70 |
], |
71 |
paginate: true |
72 |
})); |
73 |
</script> |
74 |
|
66 |
[% IF CAN_user_clubs_enroll %] |
75 |
[% IF CAN_user_clubs_enroll %] |
67 |
<script> |
76 |
<script> |
68 |
function loadEnrollmentForm( id ) { |
77 |
function loadEnrollmentForm( id ) { |
69 |
- |
|
|