Move busui to seperate repository
[bus.git] / report_latest_visits.tpl
1 <?php if(!empty($visits)):?>
2 <table style="width:100%;">
3 <?php foreach($visits->resultsRows as $row): ?>
4 <TR>
5 <?php include('row_visitSummary.tpl');?>
6 </TR>
7 <?php endforeach; ?>
8 </table>
9 <?php //echo $this->makePaginationFromResultSet($visits);?>
10 <?php else:?>
11 There were no visits during this time period.
12 <?php endif;?>