Advertisement
Guest User

Untitled

a guest
Jul 27th, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /**
  2. This is the frontpage_reports.tpl file
  3. */
  4.  
  5. <?php
  6. if(!$reports)
  7. {
  8. echo 'No reports have been filed';
  9. return;
  10. }
  11.  
  12. foreach($reports as $report)
  13. {
  14. ?>
  15.  
  16. <li><a href="<?php echo url('/pireps/viewreport/'.$report->pirepid);?>">#<?php echo $report->pirepid
  17. . ' - ' . $report->code.$report->flightnum?> <span class="icon-align-left"></span> New Pirep from <strong><?php echo $report->firstname . ' ' . $report->lastname?></strong></a></li>
  18. <?php
  19. }
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement