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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/webapp/dhis-web-dashboard-integration/data_mart_export.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
<table class="contentProviderTable">
 
3
    <tr>
 
4
        <th colspan="2">$i18n.getString( "data_mart_export" )</th>
 
5
    </tr>
 
6
    #foreach ( $export in $dataMartExports )
 
7
    <tr>
 
8
        <td>
 
9
                <a href="../dhis-web-datamart/exportDataMartExport.action?id=${export.id}">$export.name</a>
 
10
        </td>           
 
11
        <td style="width:16px">
 
12
            <a href="javascript:window.location.href='removeDataMartExport.action?id=$export.id'" title="$i18n.getString( 'remove' )">
 
13
            <img src="../images/close.png" alt="$i18n.getString( 'remove' )"></a>
 
14
        </td>
 
15
    </tr>
 
16
    #end
 
17
</table>