<?php \Laravel\Section::start('content'); ?>
	<h1>Competition teams</h1>
	<div class="table">
	<table id="tb_teams" class="grid">
		<thead>
			<tr>
				<th width="80px"></th>
				<th>id</th>
				<th>name</th>
				<th>code</th>
				<th>division</th>
				<th>Address</th>
				<th>phone</th>
				<th>avg.</th>
			</tr>
		</thead>
		<tfoot>
			<tr>
				<th colspan="8">
					<?php echo  Form::open('team/new', 'GET') ; ?>
					<?php echo  Form::submit('new team' , array( 'class' => 'button')) ; ?>
					<?php echo  Form::close() ; ?>
				</th>
			</tr>
		</tfoot>
		<tbody>
		<?php foreach($teams as $team): ?>
			<?php if( $team->ec_team): ?>
			<tr bgcolor="#ffffbb">
			<?php else: ?>
			<tr>
			<?php endif; ?>
				<td><?php echo  HTML::link_to_route('team' , '', array($team->id), array( 'class'=>'show', 'alt'=>'show', 'title'=>'show details')) ; ?>
					<?php echo  HTML::link_to_route('edit_team', '', array($team->id), array( 'class'=>'upd', 'alt'=>'upd', 'title'=>'update')) ; ?>
					<?php echo  HTML::link_to_route('confirm_team', '', array($team->id), array( 'class'=>'del', 'alt'=>'del', 'title'=>'delete')) ; ?></td>
				<td><?php echo  $team->club_code ; ?></td>
				<td><?php echo  $team->team_name ; ?></td>
				<td><?php echo  $team->team_code ; ?></td>
				<td><?php echo  $team->div_name ; ?></td>
				<td><?php echo  $team->club_address; ?></td>
				<td><?php echo  $team->club_phone ; ?></td>
				<td>0</td>
			</tr>
		<?php endforeach; ?>
		</tbody>
	</table>
	</div>
<?php \Laravel\Section::stop(); ?>





<?php echo view('layouts.grid')->with(get_defined_vars())->render(); ?>