Move busui to seperate repository
[bus.git] / report_visit.tpl
1 <div class="owa_reportSectionHeader">Visit Summary</div>
2 <div class="owa_reportSectionContent">
3 <?php include('report_latest_visits.tpl');?>
4 </div>
5
6 <div class="owa_reportSectionHeader">Visit Clickstream</div>
7 <div class="owa_reportSectionContent">
8
9
10 <div>
11 <table size="100%">
12 <TR>
13 <TH>Time</TH>
14 <TH>Page</TH>
15 </TR>
16 <?php foreach($clickstream->resultsRows as $s): ?>
17 <TR>
18 <TD colspan="2">
19 <table class="owa_infobox" size="100%">
20 <TR>
21 <TD valign="top"><?php echo $s['hour'];?>:<?php echo $s['minute'];?>:<?php echo $s['second'];?></TD>
22 <TD>
23 <a href="<?php echo $this->makeLink(array('do' => 'base.reportDocument', 'document_id' => $s['document_id']));?>"><span class="inline_h2"><?php echo $s['page_title'];?></span></a> <span class="h_label">(<?php echo $s['page_type'];?>)</span><BR>
24 <span class="info_text"><?php echo $s['url'];?></span>
25 </TD>
26 </TR>
27 </table>
28 </TD>
29 </TR>
30 <?php endforeach; ?>
31 </table>
32 </div>
33 </div>
34