Move busui to seperate repository
[bus.git] / report.tpl
1 <SCRIPT>
2 OWA.items['<?php echo $dom_id;?>'] = new OWA.report();
3 OWA.items['<?php echo $dom_id;?>'].dom_id = "<?php echo $dom_id;?>";
4 OWA.items['<?php echo $dom_id;?>'].page_num = "<?php $this->out( $this->getValue( 'page_num', 'pagination' ),false );?>1";
5 OWA.items['<?php echo $dom_id;?>'].max_page_num = "<?php $this->out( $this->getValue( 'max_page_num', 'pagination' ), false );?>";
6 OWA.items['<?php echo $dom_id;?>'].max_page_num = "<?php $this->out( $this->getValue( 'more_pages', 'pagination' ), false );?>";
7 OWA.items['<?php echo $dom_id;?>'].properties = <?php echo $this->makeJson($params);?>;
8 </SCRIPT>
9 <div id="<?php echo $dom_id;?>" class="owa_reportContainer">
10
11 <table width="100%" cellpadding="0" cellspacing="0">
12
13 <TR>
14 <TD valign="top" class="owa_reportLeftNavColumn">
15 <div class="reportSectionContainer">
16 <div id="owa_reportNavPanel">
17 <?php echo $this->makeNavigationMenu($top_level_report_nav);?>
18 </div>
19 </div>
20 </TD>
21 <TD valign="top" width="*">
22
23 <div class="reportSectionContainer" style="margin-bottom:20px;">
24 <?php include('filter_site.tpl');?>
25 </div>
26
27 <div class="reportSectionContainer">
28 <div class="owa_reportPeriod" style="float:right;"><?php include('filter_period.tpl');?></div>
29 <div class="owa_reportTitle"><?php echo $title;?><span class="titleSuffix"><?php echo $this->get('titleSuffix');?></span></div>
30
31 <div class="clear"></div>
32 <?php echo $subview;?>
33
34 </div>
35 </TD>
36 </TR>
37 </table>
38 </div>
39 <script>
40 OWA.items['<?php echo $dom_id;?>'].showSiteFilter();
41 </script>
42
43