Jump to content

Recommended Posts

Posted

Either do that ^^ or paste here the contents of your schedule_results.tpl/.php file

You might have this line copied wrong

<a id="<?php echo $route->id; ?>" class="addbid"
   href="<?php echo actionurl('/schedules/addbid');?>">Add to Bid</a>

Posted

schedule_results.tpl/.php file

<?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?>

<?php

if(!$schedule_list)

{

echo '<p align="center">No routes have been found!</p>';

return;

}

?>

<table id="tabledlist" class="tablesorter">

<thead>

<tr>

<th>Flight Info</th>

<th>Options</th>

</tr>

</thead>

<tbody>

<?php foreach($schedule_list as $schedule) { ?>

<tr>

<td>

<a href="<?php echo url('/schedules/details/'.$schedule->id);?>"><?php echo $schedule->code . $schedule->flightnum?>

<?php echo '('.$schedule->depicao.' - '.$schedule->arricao.')'?>

</a>

<br />

<strong>Departure: </strong><?php echo $schedule->deptime;?>         <strong>Arrival: </strong><?php echo $schedule->arrtime;?><br />

<strong>Equipment: </strong><?php echo $schedule->aircraft; ?> (<?php echo $schedule->registration;?>) <strong>Distance: </strong><?php echo $schedule->distance . Config::Get('UNITS');?>

<br />

<strong>Days Flown: </strong><?php echo Util::GetDaysCompact($schedule->daysofweek); ?><br />

<?php echo ($schedule->route=='') ? '' : '<strong>Route: </strong>'.$schedule->route.'<br />' ?>

<?php echo ($schedule->notes=='') ? '' : '<strong>Notes: </strong>'.html_entity_decode($schedule->notes).'<br />' ?>

<?php

# Note: this will only show if the above code to

# skip the schedule is commented out

if($schedule->bidid != 0) {

echo 'This route has been bid on';

}

?>

</td>

<td nowrap>

<a href="<?php echo url('/schedules/details/'.$schedule->id);?>">View Details</a><br />

<a href="<?php echo url('/schedules/brief/'.$schedule->id);?>">Pilot Brief</a><br />

<?php

# Don't allow overlapping bids and a bid exists

if(Config::Get('DISABLE_SCHED_ON_BID') == true && $schedule->bidid != 0) {

?>

<a id="<?php echo $schedule->id; ?>" class="addbid"

href="<?php echo actionurl('/schedules/addbid/?id='.$schedule->id);?>">Add to Bid</a>

<?php

} else {

if(Auth::LoggedIn()) {

?>

<a id="<?php echo $schedule->id; ?>" class="addbid"

href="<?php echo url('/schedules/addbid');?>">Add to Bid</a>

<?php

}

}

?>

</td>

</tr>

<?php

/* END OF ONE TABLE ROW */

}

?>

</tbody>

</table>

<hr>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...