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