<?php
                if(count($this->Participations)>0){
                ?>
                    
                    <div class="span12" style="margin:0px; margin-bottom:20px  ">
                        <div class="head clearfix">
                            <div class="isw-cloud"></div>
                            <h1>Squad Participation</h1>
                            <ul class="buttons">        
                               <li class="toggle"><a href="#"></a></li>
                            </ul> 
                        </div>
                        <div class="block  TableData" style="padding: 0px; margin-bottom:0px " id="CareerList">
                        	
                    
                          <table class="table" width="100%" cellspacing="0" cellpadding="0">
                                    <thead>
                                    	<tr>
                                    		<th width="5%">Year</th>
                                    		<th width="35%">Squad</th>
                                    		<th width="5%">No</th>
                                    		<th width="10%">Position</th>
                                    		
                                    		<th width="35%">Tournament</th>
                                    		<th width="5%">Age</th>
                                    		
                                    	</tr>
                                    </thead>
                                    <tbody>
                                        <?php
                                    foreach($this->Participations as $Squad){
                                      
                                    ?>
                                    <tr>    
                                    	<td><?=date("Y",strtotime($Squad["FormDate"]))?></td>                                
                                        <td><a href="/squad/profile/id/<?=$Squad["SID"]?>" target="_blank"><?=$Squad["SquadName"]?></a></td>
                                        <td><?=$Squad["Position"]?></td>
                                        <td><?=$Squad["PosName"]?></td>
                                         <td><?=$Squad["TournName"]?></td>
                                          <td><?=$Squad["Age"]?></td>
                                           
                                    </tr>
                                    <?php } ?>                                   
                                    </tbody>
                                    <tfoot>
                                        <tr>
                                            <td colspan="7" align="right"></td>
                                        </tr>
                                    </tfoot>
                                </table>
                            
                         </div>	
                        </div>
                        
                        
                         <? }  ?>  