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

<?php $__env->startSection('header'); ?>
	Edit Cooperations
<?php $__env->stopSection(); ?>

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

	$('table tbody tr:even').css('background-color', '#f2f2f2');
	
	$("#cooperations tbody tr[is_retired]").css('background-color', '#7d7b7d');


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

<?php $__env->startSection('content'); ?>
<div class="admin_page" style="height:100%; font-size:11pt; padding: 1em 1.4em; background-color:#ffffff;">

	<?php		
		$coops = $information['coops'];


	?>

	<h1>Cooperations</h1>	
	
	<?php /* 
	<h2>Add Cooperation</h2>
	<?php echo Form::open(array('url' => url('/admin/add'), 'class' => 'addCooperation', 'id' => 'addCooperation')); ?>				
				
		<?php echo Form::hidden('return_url', Request::path()); ?>		

	<?php echo Form::close(); ?>
	 */ ?>

	<h2>List of Cooperations</h2>
	<table id="cooperations" style="width:100%; border-collapse:collapse;">
		<thead class="ui-tabs-nav ui-widget-header ui-corner-all text_left" >
			<tr>
				<th style="">ID</th>
				<th style="">Name</th>
				<th style="">Host School</th>
				<th style="">School #2</th>
				<th style="">School #3</th>
				<td style="">School #4</td>
				<th style="">Activity</th>
				<th style="">League</th>
				<th style="">Start</th>
				<th style="">End</th>
				<th style="">Comments</th>
				<th style="">Retired?</th>				
			</tr>
		</thead>

		<tbody>
			<?php foreach ($coops as $coop): ?>
				
					
					<tr style="height:2em; line-height:2em;" <?php if($coop->is_retired): ?> is_retired="true" <?php endif; ?>>
						<td><?php echo $coop->id; ?></td>
						<td><?php echo $coop->name; ?></td>
						<td><?php echo $coop->schools['1']->short_name; ?></td>
						<td>
							<?php if (isset ($coop->schools['2'])): ?>
								<?php echo $coop->schools['2']->short_name; ?>
							<?php endif; ?>
						</td>
						<td>
							<?php if (isset ($coop->schools['3'])): ?>
								<?php echo $coop->schools['3']->short_name; ?>
							<?php endif; ?>
						</td>
						<td>
							<?php if (isset ($coop->schools['4'])): ?>
								<?php echo $coop->schools['4']->short_name; ?>
							<?php endif; ?>
						</td>
						<td><?php echo $coop->activity; ?></td>
						<td><?php echo $coop->league; ?></td>
						<td><?php echo $coop->starting_school_year; ?></td>
						<td><?php echo $coop->ending_school_year; ?></td>
						<td><?php echo $coop->comments; ?></td>
						<td><?php echo $coop->is_retired; ?></td>						
					</tr>

				
			<?php endforeach; ?>
		</tbody>

	</table>

</div>

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

