').appendTo('body')
.attr('data-loading', 1)
.css('width', '225px')
.css('height', '170px')
.css('text-align', 'center')
.css('padding', '0.5em')
.position({my : "center center", at : "center center", of : window})
.addClass('ui-dialog ui-widget ui-widget-content ui-corner-all ui-front ui-di buttons')
.html('
Loading...

Please wait, this may take a while to process...
'); --}}
$('#entries')
.DataTable({
'paging' : true,
'pageLength' : 25,
'order' : [[0, 'asc']],
'preDrawCallback' : function() {
$('div[data-loading="2"]').position({my : "center center", at : "center center", of : window});
},
'initComplete' : function() {
$('#entries').show();
$('div[data-loading]').remove();
}
});
@stop
@section('page_functions')
@if (!is_null($info['download_file']))
Download
@endif
Records & Archives
@stop
@section('main_content')
Loading...

Please wait, this may take a while to process...
@if (!is_null($info['file_stats']))
Updated {{ date('n/j/Y g:ia', $info['file_stats']['mtime'])}}
@endif
| Year |
Classification |
Activity |
Champion |
@if (count($info['entries']) > 0)
@foreach ($info['entries'] as $entry)
| {{ $entry['year'] }} |
{{ $entry['classification'] }} |
{{ $entry['activity'] }} |
{{ $entry['champion'] }} |
@endforeach
@endif
@stop