pilot list.tpl
<br /><br />
<h3><?php echo $title?></h3>
<?php
if(!$allpilots)
{
echo ‘There are no pilots!’;
return;
}
?>
<table width=“100%” class=“ocean_table” id=“tabledlist”>
<thead>
<tr>
<th>Pilot ID</th>
<th width=“24%”>Name</th>
<th width=“16%”>Rank</th>
<th width=“17%”>Flights</th>
<th width=“18%”>Hours</th>
<th width=“19%”>Status</th>
</tr>
</thead>
<tbody>
<?php
foreach($allpilots as $pilot)
{
/*
To include a custom field, use the following example:
<td>
<?php echo PilotData::GetFieldValue($pilot->pilotid, ‘VATSIM ID’); ?>
</td>
For instance, if you added a field called “IVAO Callsign”:
echo PilotData::GetFieldValue($pilot->pilotid, ‘IVAO Callsign’);
*/
// To skip a retired pilot, uncomment the next line:
//if($pilot->retired == 1) { continue; }
?>
<tr>
<td width=“6%” nowrap><a href=“<?php echo url(‘/profile/view/’.$pilot->pilotid);?>”>
<?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a>
</td>
<td>
<img src=“<?php echo Countries::getCountryImage($pilot->location);?>”
alt=“<?php echo Countries::getCountryName($pilot->location);?>” />
<?php echo $pilot->firstname.’ '.$pilot->lastname?>
</td>
<td><img src=“<?php echo $pilot->rankimage?>” alt=“<?php echo $pilot->rank;?>” /></td>
<td><?php echo $pilot->totalflights?></td>
<td><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td>
<td><?php
if($pilot->retired == ‘1’)
{echo ‘<img src="’.SITE_URL.‘/lib/skins/ocean_blue/images/no.png" alt=“warning” /> - Retired’;}
else
{echo ‘<img src="’.SITE_URL.‘/lib/skins/ocean_blue/images/yes.png" alt=“warning” /> - Active’;}
?></td>
<?php
}
?>
</tbody>
</table>