<!DOCTYPE html>
<html lang="en-US">
	<head>
		<meta charset="utf-8">
		<style type="text/css">
			* {margin:0; padding:0;}
			body {font-family:Arial, Helvetica, sans-serif; font-size:11pt; line-height:120%; color:#151515; background:#ffffff; width:800px;}
		</style>
	</head>
	<body>
		<div style="color: #1c43a6; font-size: 18pt; width: 800px; padding-bottom: 4px; border-bottom: 2px solid #1c43a6;">
			OSAA Online Forms
		</div>

		<br />

		<div style="font-weight: bold; font-size: 13pt;">
			<?php echo $information['form']->school_year; ?>-<?php echo substr($information['form']->school_year, 2, 2) + 1; ?> <?php echo $information['season']; ?> Participation 
		</div>

		<p>
			Hello, <?php echo $information['user']->getDisplayFullName(); ?>.<br /><br />

			Thank you for submitting participation numbers for <?php echo $information['school']->short_name; ?>.  You can update your entries from your OSAA account up until the deadline.
		</p>

		<br />		

		<table style="width: 600px; border-collapse: collapse;">
			<thead>
				<tr>
					<th style="text-align: left;">Sport / Activity</th>
					<th style="text-align: left;"># Boys</th>
					<th style="text-align: left;"># Girls</th>
					<!--<th style="text-align: left;"># Foreign Exchange</th>-->
				</tr>
			</thead>

			<tbody>
				<?php foreach ($information['data'] as $activity => $numbers): ?>

					<?php if (strlen($activity) > 3) continue; ?>
									
					<tr>	
						<td>
							<?php echo Helpers::getActivityName($activity); ?>
						</td>

						<td>
							<?php echo $numbers->boys; ?>
						</td>

						<td>
							<?php echo $numbers->girls; ?>
						</td>

						<td>
							<?php echo $numbers->forex; ?>
						</td>
					</tr>

				<?php endforeach; ?>
			</tbody>
			

		</table>

		
		<br />		
		<br />
		<br />
		
		Regards,<br /><br />
		Oregon School Activities Association

		<br />

		
	</body>
</html>