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

« back to all changes in this revision

Viewing changes to local/in/dhis-web-integration/src/main/webapp/dhis-web-integration/createDatasetResult.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
#if(!$notFound)
 
2
<h1>
 
3
        Dataset created successfully
 
4
</h1>
 
5
<p>
 
6
        $deCount data elements added.
 
7
</p>
 
8
#else
 
9
<h1>
 
10
        Dataset created with errors
 
11
</h1>
 
12
<p>
 
13
        $deCount data elements added. The following $notFound.size() data elements were not found:
 
14
</p>
 
15
<table>
 
16
        <tr>
 
17
                <th>
 
18
                        ID
 
19
                </th>
 
20
                <th>
 
21
                        Name
 
22
                </th>
 
23
        </tr>
 
24
        #foreach($mapping in $notFound)
 
25
                <tr>
 
26
                        <td>
 
27
                                $mapping.getDhisid()
 
28
                        </td>
 
29
                        <td>
 
30
                                $mapping.getDeName()
 
31
                        </td>
 
32
                </tr>
 
33
        #end
 
34
</table>
 
35
#end
 
 
b'\\ No newline at end of file'