30 lines
925 B
Plaintext
Executable File
30 lines
925 B
Plaintext
Executable File
<table class="table table-hover table-striped projects-index academic-advising dt-responsive">
|
|
<caption><h3>{{widget-title}}</h3></caption>
|
|
<thead>
|
|
<tr data-level="0" data-list="headers">
|
|
<th class="col-md-{{col}}">{{head-title}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody data-level="0" data-list="advisings">
|
|
<tr data-level="1" data-list="academic_advisings">
|
|
<td>{{value}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{{pagination_goes_here}}
|
|
|
|
<script>
|
|
$('thead th.col-md-2:nth-child(2)').addClass('min-tablet-l');
|
|
$('thead th.col-md-2:nth-child(5)').addClass('min-tablet');
|
|
$('table.academic-advising').each(function(){
|
|
if($(this).find('thead').length!=0 && $(this).find('td').length!=0 && !$(this).hasClass('dataTable')){
|
|
$(this).DataTable({
|
|
searching: false,
|
|
paging: false,
|
|
ordering: false,
|
|
info: false
|
|
,
|
|
autoWidth: false
|
|
});
|
|
}
|
|
});;
|
|
</script> |