<?php $__env->startSection('page_title'); ?>
    OSAA Staff
<?php $__env->stopSection(); ?>

<?php $__env->startSection('header'); ?>
	Check Colley Rankings
<?php $__env->stopSection(); ?>


<?php $__env->startSection('scripts'); ?>
	
            
<?php $__env->stopSection(); ?>

<?php $__env->startSection('jquery_init'); ?>    	
	
	$('html').css({'height' : '100%'});
	$('body').css({'min-height' : '93%', 'background-color' : '#ffffff;'});
	

<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

	<div class="admin_page" style="padding: 1em 0.5em; font-size:11pt;">

		<?php foreach ($information['checks'] as $activity => $divisions): ?>
		
			<h2><?php echo $information['year']; ?>-<?php echo intval(substr($information['year'], 2, 2)) + 1; ?> <?php echo Helpers::getActivityName($activity); ?></h2>

			<div class="columns">				

				<?php foreach ($divisions as $division => $check): ?>

					<div class="sixth" style="padding: 0;">
						<h3><?php echo $division; ?> <?php echo $activity; ?></h3>

						<b>Test: </b>
						<?php if ($check->pass): ?>
							<span style="color: #0d581b;">PASS</span> <img src="<?php echo asset('/images/icons/check_16px.png'); ?>" alt="" title="" style="position: relative; top: 2px;" />
						<?php else: ?>
							<span style="color: #990000;">FAIL</span> <img src="<?php echo asset('/images/icons/missing_16px.png'); ?>" alt="" title="" style="position: relative; top: 2px;" />
						<?php endif; ?>
						<br />
						<b>Mean: </b><?php echo $check->mean; ?><br />

						<?php if (count($check->cts_count) > 0): ?>

							<?php foreach ($check->cts_count as $id => $text): ?>

								<?php echo $id; ?> - <?php echo $text; ?><br />

							<?php endforeach; ?>

						<?php endif; ?>

						<?php if (count($check->colleyable) > 0): ?>

							<?php foreach ($check->colleyable as $id => $text): ?>

								<?php echo $id; ?> - <?php echo $text; ?><br />

							<?php endforeach; ?>

						<?php endif; ?>

					</div>

				<?php endforeach; ?>
			</div>

			<br class="clear" /><br />
			<div class="horizontal_divider" style="width: 100%;"></div>
			<br />

		<?php endforeach; ?>

	</div>

<?php $__env->stopSection(); ?>

