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

« back to all changes in this revision

Viewing changes to webservice/dhis-webservice-expoze/src/main/resources/htmlReportTableData.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
        <body>
 
4
                <table>
 
5
                        <tr>
 
6
                                <td colspan="$object.columns.values().size()"><h3>$object.name</h3></td>
 
7
                        </tr>
 
8
                        <tr>
 
9
            #foreach( $column in $object.columns.values() )
 
10
                <th>$column</th>
 
11
            #end
 
12
            </tr>
 
13
            #foreach( $row in $object.rows )
 
14
                <tr>
 
15
                #foreach( $value in $row.values() )
 
16
                    <td>$value</td>
 
17
                #end
 
18
                </tr>
 
19
            #end
 
20
        </table>
 
21
    </body>
 
22
</html>