<?php \Laravel\Section::start('content'); ?>
	<div><h1>Registration applications</h1></div>
	<div class="table">
	<table id="tb_registrations" class="grid">
		<thead>
			<tr>
				<th width="54px">id</th>
				<th>Name</th>
				<th>email</th>
				<th>telephone</th>
				<th>mobile</th>
				<th>address</th>
				<th>birthday</th>
				<th>lang.</th>
				<th>sign</th>
				<th>paid</th>
			</tr>
		</thead>
		<tfoot>
			<tr>
				<th colspan="10">
					<?php echo  Form::open('registration/new', 'GET') ; ?>
					<?php echo  Form::submit('new registration' , array( 'class' => 'button')) ; ?>
					<?php echo  Form::close() ; ?>
				</th>
			</tr>
		</tfoot>
		<tbody>
		<?php foreach($registrations as $registration): ?>
			<tr>
				<td><?php echo  HTML::link_to_route('edit_registration' , '', array($registration->id), array( 'class'=>'upd', 'alt'=>'upd', 'title'=>'update' )) ; ?>
					<?php echo  HTML::link_to_route('confirm_registration' , '', array($registration->id), array( 'class'=>'del', 'alt'=>'del', 'title'=>'delete')) ; ?></td>
				<td><?php echo  $registration->reg_name . ' ' . $registration->reg_surname ; ?></td>
				<td><?php echo  HTML::mailto($registration->reg_email,$registration->reg_email); ?></td>
				<td><?php echo  $registration->reg_phone; ?></td>
				<td><?php echo  $registration->reg_mobile; ?></td>
				<td><?php echo  $registration->reg_address ; ?><br/><?php echo  $registration->reg_pcode ; ?></td>
				<td><?php echo  $registration->reg_birthday; ?></td>
				<td><?php echo  $registration->reg_language; ?></td>
				<td><?php if($registration->reg_form_signed): ?>
					<?php echo  HTML::image('img/done.jpg', 'done') ; ?>	
					<?php else: ?>
					<?php echo  HTML::image('img/attn.png', 'done') ; ?>	
					<?php endif; ?>
				</td>
				<td><?php if($registration->reg_fee_paid): ?>
					<?php echo  HTML::image('img/done.jpg', 'done') ; ?>	
					<?php else: ?>
					<?php echo  HTML::image('img/attn.png', 'done') ; ?>	
					<?php endif; ?>
				</td>
			</tr>
		<?php endforeach; ?>
		</tbody>
	</table>
	</div>
<?php \Laravel\Section::stop(); ?>





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