~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to local/in/dhis-web-dashboard/src/main/webapp/dhis-web-dashboard/tabularAnalysisResult.vm

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
<html>
 
3
            <head>   
 
4
                <title>Tabular Analysis Result</title>
 
5
        <link type="text/css" rel="stylesheet" media="screen" href="css/StylesForTags.css">     
 
6
            </head>
 
7
            <body >
 
8
                        <center>
 
9
                                <font face="arial" size="3"><b>Tabular Analysis For Period $startPeriod.startDate To $endPeriod.endDate</b></font>            
 
10
                        </center>
 
11
                        <br /><br />
 
12
                        <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-style: dotted" bordercolor="#111111" width="100%">
 
13
            <tr>
 
14
                <td class="TableHeadingCellStyles" style="border-style: dotted; border-width: 1">Service Name</td>
 
15
                    #foreach($orgUnit in $selectedOrgUnitList)
 
16
                        <td class="TableHeadingCellStyles" align="center" style="border-style: dotted; border-width: 1">$orgUnit.name</td>                                   
 
17
                        #end
 
18
                        <td class="TableHeadingCellStyles" style="border-style: dotted; border-width: 1">Total</td>
 
19
            </tr>
 
20
            #foreach($dataValueKeys in $dataValueResult.keySet())                    
 
21
                #set($dataValues = $dataValueResult.get($dataValueKeys))
 
22
                <tr>
 
23
                    <td class="TableHeadingCellStyles" style="border-style: dotted; border-width: 1">$dataValueKeys.name</td>                            
 
24
                             #foreach($dataValue in $dataValues)
 
25
                                 <td class="TableDataCellStyles" align="center" style="border-style: dotted; border-width: 1">$dataValue</td>                                        
 
26
                             #end
 
27
                </tr>    
 
28
            #end        
 
29
        </table>
 
30
    </body>
 
31
</html>    
 
 
b'\\ No newline at end of file'